
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@blakek/deep
Advanced tools
🐡 Get, set, remove, and test for deeply nested properties
Helps you safely work with nested properties.
Using Yarn:
$ yarn add @blakek/deep
…or using npm:
$ npm i --save @blakek/deep
import {
clone,
createGetter,
get,
has,
omit,
pluck,
remove,
set
// also available:
// - createHas
// - createOmit
// - createPluck
// - createRemove
// - createSetter
// - isObject
// - traverseObject
} from '@blakek/deep';
const user = {
id: 'abf87de',
roles: ['alert:create', 'alert:read'],
sites: {
github: {
username: 'blakek'
}
}
};
// Deeply clone most values
const userCopy = clone(user);
user === userCopy; //» false
user.id === userCopy.id; //» true
user.roles === userCopy.roles; //» false
user.roles[0] === userCopy.roles[0]; //» true
// Get a property value
get('sites.github.username', user); //» 'blakek'
// Get a property value with a fallback other than `undefined`
get('sites.facebook.username', user, 'no-account'); //» 'no-account'
// Create a function to get a property value later
const getUsername = createGetter('sites.github.username');
getUsername(user); //» 'blakek'
// Test for a property value
has('sites.github', user); //» true
// Clone an object and omit properties
omit(['roles', 'sites'], user); //» { id: 'abf87de' }
// Pluck a subset of properties
pluck(['id', 'roles'], user);
//» { id: 'abf87de', roles: [ 'alert:create', 'alert:read' ] }
// Remove a property value, modifying the current object
remove('a', { a: 42, b: 123 }); //» { b: 123 }
// Set a property value, modifying the current object
set(123, 'a.b.c', { a: 42 }); //» { a: { b: { c: 123 } } }
For all these:
path can be either a dot-notation string or array of path partscloneReturns a deep clone / deep copy of most values: primitive values, objects, arrays, Map, Set, Date, etc.
function clone<T extends unknown>(value: T): T;
const object = { value: 'yep' };
const cloned = clone(object);
cloned === object; //» false
cloned.value === object.value; //» true
get / createGetterGets the value for a given path with an optional fallback value.
function get(path: Path, object: object, fallbackValue?: any): unknown;
function createGetter(
path: Path,
fallbackValue?: any
): (object: object) => unknown;
const user = {
id: 'abf87de',
roles: ['alert:create', 'alert:read'],
sites: {
github: {
username: 'blakek'
}
}
};
get('id', user); //» 'abf87de'
get('roles.0', user); //» 'alert:create'
get('roles[0]', user); //» 'alert:create'
get(['roles', 1], user); //» 'alert:read'
get('sites.github.username', user); //» 'blakek'
get('sites.github.avatar.src', user, 'default.png'); //» 'default.png'
const getID = get('id');
getID(user); //» 'abf87de'
const getRoles = createGetter('roles');
getRoles(user); //» ['alert:create', 'alert:read']
has / createHasReturns true if a value was found at the given path or false if nothing was
found.
function has(path: Path, object: any): boolean;
function createHas(path: Path): (object: any) => boolean;
const product = {
id: 'abf87de',
name: 'Logo T-Shirt',
attributes: {
isCool: undefined,
materials: ['cotton']
}
};
has('attributes.materials', product); //» true
has(['avability', 'sizes'], product); //» false
has('attributes.isCool', product); //» true; property exists but is undefined
const hasMaterials = createHas('attributes.materials');
hasMaterials(product); //» true
// NOTE: `get()` should be used if you want to ensure a value is not `undefined`
get('attributes.isCool', product, false); //» false
omit / createOmitReturns a clone of an object with a list of properties removed.
Note: omit() returns a clone with properties removed. If you'd rather modify
the existing object for performance, consider using remove().
function omit(properties: Path[], object: any): any;
function createOmit(properties: Path[]): (object: any) => any;
const user = {
username: 'blakek',
roles: ['alert:create', 'alert:read'],
sites: {
github: {
username: 'blakek'
}
}
};
omit(['roles', 'sites'], user); //» { username: 'blakek' }
omit(['username', 'roles', 'sites.doesnt.exist'], user);
//» { sites: { github: { username: 'blakek' } } }
const omitExtra = createOmit(['roles, sites']);
omitExtra(user); //» { username: 'blakek' }
pluck / createPluckGets a subset of properties from an object.
function pluck(properties: Path[], object: any): any;
const user = {
username: 'blakek',
roles: ['alert:create', 'alert:read'],
sites: {
github: {
username: 'blakek'
}
}
};
pluck(['username'], user); //» { username: 'blakek' }
pluck(['username', 'roles'], user);
//» { username: 'blakek', roles: [ 'alert:create', 'alert:read' ] }
const permissionInfo = pluck(['roles', 'username']);
permissionInfo(user); //» { roles: [ 'alert:create', 'alert:read' ], username: 'blakek' }
remove / createRemoveRemoves a value at a path and returns the object.
Note: remove() modifies the passed-in object rather than creating a copy. If
you'd rather return a new object:
omit(); omit() returns a clone with a list of properties removedclone() before remove()function remove(path: Path, object: any): any;
function createRemove(path: Path): (object: any) => any;
const user = {
username: 'blakek',
password: 'wouldntyouliketoknow'
};
remove('password', user); //» { username: 'blakek' }
remove('property.does.not.exist', user);
//» { username: 'blakek' } (same object from previous line)
const removePassword = createRemove('password');
removePassword({ username: 'bob', password: 'laskjfl' }); //» { username: 'bob' }
set / createSetterSets a value at a path and returns the object.
Note: set() modifies the passed-in object rather than creating a copy. If
you'd rather return a new object:
clone() before set()function set(value: any, path: Path, object: any): any;
function createSetter(path: Path, object: any): (value: any) => any;
const user = {
profile: {
bgColor: '#639'
}
};
set('tomato', 'profile.bgColor', user); //» { profile: { bgColor: 'tomato' } }
set('/images/user.png', 'profile.bgImage', user);
//» { profile: { bgColor: 'tomato', bgImage: '/images/user.png' } }
const logout = set(null, 'profile');
logout(user); //» { profile: null }
const setUsername = createSetter('username', user);
setUsername('blakek'); //» { profile: { bgColor: 'tomato', bgImage: '/images/user.png' }, username: 'blakek' }
Node.js and Yarn are required to work with this project.
To install all dependencies, run:
yarn
yarn build | Builds the project to ./dist |
yarn format | Format the source following the Prettier styles |
yarn test | Run project tests |
yarn test --watch | Run project tests, watching for file changes |
MIT
FAQs
🐡 Get, set, remove, and test for deeply nested properties
The npm package @blakek/deep receives a total of 10,338 weekly downloads. As such, @blakek/deep popularity was classified as popular.
We found that @blakek/deep demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.