# ts-safe-access **Repository Path**: mirrors_salesforce/ts-safe-access ## Basic Information - **Project Name**: ts-safe-access - **Description**: 🍭 It's Like Lodash get with the 💪 of Typescript - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 🍭 It's Like Lodash get with the 💪 of Typescript [![Build Status](https://semaphoreci.com/api/v1/netanel7799/ts-safe-access/branches/master/badge.svg)](https://semaphoreci.com/netanel7799/ts-safe-access) [![License](https://img.shields.io/dub/l/vibe-d.svg?style=flat-square)]() [![Stars](https://img.shields.io/redmine/plugin/stars/redmine_xlsx_format_issue_exporter.svg?style=flat-square)]() ## Installation `npm install @datorama/ts-safe-access --save` ## Usage - `get(object, getFn[, defaultValue, excludeNull = false])` - Gets the value at path of object. If the resolved value is `undefined`, the defaultValue is returned in its place. #### Options | Option | Description | Default Value | | -------------------- | ------------------------------------------------------------------ | ---------------- | | `defaultValue` | If the resolved value is `undefined`, the defaultValue is returned in its place.| `undefined` | `excludeNull` | if the resolved value is `null`, the defaultValue is returned in its place. | `false` ```js const data = {its: {really: {really: {really: {nested : undefined}}}}, nested: {value: null}}; const result = get(data, data => data.its.really.really.really.nested, 'defaultValue'); ``` - `has(object, getFn)` - Checks if path is a direct property of object. ```js const data = {its: {really: {really: {}}, b: {}}; const result = has(data, data => data.its.really.really.really.nested); expect(result).toEqual(false); ```