JSPM

json-path-search

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q21393F
  • License MIT

A simple utility for traversing a JSON object using relative paths

Package Exports

  • json-path-search
  • json-path-search/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (json-path-search) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

json-path-search

A simple utility for traversing a JSON object using relative paths.

Sample Code Snippet:

const search = require('json-path-search');
const object = {
    key1: {
        key2: {
            key3: 'value'
        }
    }
};

console.log(search(object, "/")); // { key1: { key2: { key3: 'value' } } }
console.log(search(object, "/key1/key2")); // { key3: 'value' }
console.log(search(object, "/key1/key2/key3")); // 'value'
console.log(search(object, "/key1/key2/errorKey")); // undefined
console.log(search(object, "/key1/key2/errorKey1/errorKey2")); // undefined