@jswork/next-get-nil
v1.0.1
Published
Get null value for nx.get.
Downloads
58
Readme
next-get-nil
Get null value for nx.get.
installation
yarn add @jswork/next-get-nil
usage
import '@jswork/next-get-nil';
const obj = {a: {b: {c: null}}};
const value = nx.get(obj, 'a.b.c');
const withDefault = nx.get(obj, 'a.b.c', []);
console.log(value); // null
console.log(withDefault); // []
license
Code released under the MIT license.