
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
js-pointer
Advanced tools
Tiny, spec compliant implementation of the JSON Pointer spec RFC 6901 with 100% test coverage and no dependencies.
Install via NPM
npm i js-pointer --save
const jsPointer = require('js-pointer');
const object = { one: { two: 3 } }
jsPointer.get(object, '/one/two')
// → 3
const object = { one: { two: [3] } }
jsPointer.get(object, '/one/two/0')
// → 3
const object = { one: { two: [{ three: 4 }] } }
jsPointer.get(object, '/one/two/0/three')
// → 4
Please see the spec and tests for further detail of the JSON pointer format.
jsPointer.get(object, pointer)
Returns sub-object or value in object
referred to by pointer
.
If pointer
does not refer to an object or value then undefined
will be returned.
Plain object targeted by the pointer
string JSON pointer. A pointer beginning with #
indicates a URI fragment, which will be URI decoded before processing.
FAQs
Tiny, spec compliant JSON Pointer RFC 6901 implementation.
The npm package js-pointer receives a total of 37 weekly downloads. As such, js-pointer popularity was classified as not popular.
We found that js-pointer 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.