salesforce / ts-safe-access

🍭 It's Like Lodash get with the πŸ’ͺ of Typescript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🍭 It's Like Lodash get with the πŸ’ͺ of Typescript

Build Status License Stars

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
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.
const data = {its: {really: {really: {}}, b: {}};
const result = has(data, data => data.its.really.really.really.nested);

expect(result).toEqual(false);

About

🍭 It's Like Lodash get with the πŸ’ͺ of Typescript

License:Apache License 2.0


Languages

Language:HTML 48.4%Language:JavaScript 23.4%Language:CSS 22.8%Language:TypeScript 5.4%