dpgt
v1.0.0
Published
Small package to get deep nested properties from JavaScript objects
Maintainers
Readme
deepget
Small package to get deep nested properties from JavaScript objects
Install
# npm
npm install dpgt --save
# yarn
yarn add dpgtUse
Import the utility and get nested properties passing the object and the key path.
import deepget from 'dpgt';
// some object with nested properties
const cartoon = {
title: 'Rick and Morty',
seasons: 3,
characters: {
rick: {
firstName: 'Rick'
lastName: 'Sanchez'
},
morty: {
firstName: 'Morty'
lastName: 'Smith'
},
}
};
deepget(cartoon, 'characters.rick.lastName');
// SanchezYou can also use an array as a key path.
deepget(cartoon, [ 'characters', 'rick', 'lastName' ]);
// SanchezDefault values are supported too as a thrid optional argument.
deepget(cartoon, [ 'characters', 'beth' ], 'Not found');
// Not foundTODO
- Write tests
- Write contributing guide
