New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

del-values

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

del-values

Multiple delete deeply nested **values** from an object using dot notation `a.b.c`

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

del-values npmjs.com The MIT License

Multiple delete deeply nested values from an object using dot notation a.b.c

code climate standard code style travis build status coverage status dependency status

Install

npm i del-values --save
npm test

Usage

For more use-cases see the tests

var del = require('del-values')

del({a: 'b', c: {d: 'e', g: 'f'}}, 'a.d') //=> {a: 'b', c: {d: 'e', g: 'f'}}
del({a: 'b', c: {d: 'e', g: 'f'}, z: 'z'}, ['a', 'c.d']) //=> {c: {g: 'f' }, z: 'z'}
del({a: 'b', c: 'd'}, ['a', 'c']) //=> {}
  • assign-value: Extend a value or deeply nested property of an object using object path notation.
  • del-value: Delete deeply nested value from an object using dot notation like a.b.c.x and return the modified object if success, otherwise return original object.
  • get-value: Use property paths (a.b.c) to get a nested value from an object.
  • has-value: Returns true if a value exists, false if empty. Works with deeply nested values using object paths.
  • has-own-deep: Returns true if an object has an own, nested property using dot notation paths ('a.b.c').
  • object.omit: Return a copy of an object without the given key, or array of keys.
  • omit-value: Omit properties from an object or deeply nested property of an object using object path notation.
  • put-value: Update only existing values from an object, works with dot notation paths like a.b.c and support deep nesting.
  • set-value: Create nested values and any intermediaries using dot notation ('a.b.c') paths.
  • store-cache: Simple and flexible API for in-memory object cache store that have set, get, put, del, has and store methods. Inspired by option-cache, data-store, map-cache and more.
  • upsert-value: Update or set nested values and any intermediaries with dot notation ('a.b.c') paths.

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckocore.tk keybase tunnckocore tunnckoCore npm tunnckoCore twitter tunnckoCore github

Keywords

check

FAQs

Package last updated on 12 Jul 2015

Did you know?

Socket

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.

Install

Related posts