Skip to content
/ bury Public

Safely set a dot-notated path within a nested object.

Notifications You must be signed in to change notification settings

kalmbach/bury

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bury(obj, keypath, value)

Code Climate

Safely set a dot-notated path within a nested object, return undefined if the full key path does not exist, otherwise return the value set.

NPM

https://www.npmjs.com/package/bury

Usage

bury(object, keypath, value)

import bury from 'bury';

let obj = {
	a: {
		b: {
			c: 1
			d: undefined
			e: null
		}
	}
};

//use string dot notation for keys
bury(obj, 'a.b.c', 2) === 2;

//or use an array key
bury(obj, ['a', 'b', 'c'], 2) === 2;

//returns undefined if the full key path does not exist
bury(obj, 'a.b.c.f', "foo") === undefined;

Tests

https://github.com/kalmbach/bury/blob/master/test.js

License

MIT

About

Safely set a dot-notated path within a nested object.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published