Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

deep-props

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-props

Creates an array of deep paths and properties associated with an object. Iterates through unpacked property values until an endpoint is reached. Optionally traverses prototypes and non-enumerable properties. Endpoints may be previously discovered referenc

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

deep-props

NPM

Creates an array of deep paths and properties associated with an object. Non-recursively iterates through unpacked children until an endpoint is reached. Optionally traverses prototypes and non-enumerable properties. Endpoints may be previously discovered object references, primitives, or objects without children.

This is a small utility (2.4 KB minified) which can extract values from deeply nested data structures.

Avoids recursion by using a task queue; very deep objects may be traversed without hitting the stack limit.

It supports the following container types automatically:

  • Object
  • Array
  • Map
  • Set

Circular references or otherwise duplicate references to objects will be signified using a 'ref' property, rather than a value. See the return details.

Any unsupported data structure may be accessed by supplying a customizer function. See the global docs.

Getting Started

Prerequisites

Node.JS version 6.0.0 or above.

Installing

npm install deep-props

Testing

The following command will test the package for errors. It prints a large selection of examples to the console; scroll through its output if you want to learn more about the utility.

npm test --prefix /path/to/node_modules/deep-props

Deployment

const props = require('deep-props')

Usage

Nested object extraction

const data = { foo: { bar: { baz: 'qux' } } }

// returns { path: [ 'foo', 'bar', 'baz' ], value: 'qux' }
props(data)

Unrooting of Object Keys

const data = new Map().set(
  { foo: 'bar' }, new Map().set(
    { baz: 'beh' }, new Map().set(
      { qux: 'quz' }, new Map().set(
        { quux: 'quuz' }, 'thud'
      )
    )
  )
)

// returns:
// [
//   {
//     path: [ { foo: 'bar' }, { baz: 'beh' }, { qux: 'quz' }, { quux: 'quuz' } ],
//     value: 'thud'
//   },
//   { host: { quux: 'quuz' }, path: ['quux'], value: 'quuz' },
//   { host: { qux: 'quz' }, path: ['qux'], value: 'quz' },
//   { host: { baz: 'beh' }, path: ['baz'], value: 'beh' },
//   { host: { foo: 'bar' }, path: ['foo'], value: 'bar' }
// ]

props(data)

Extraction from complicated nests

const data = {
  foo: [
    new Map().set(
      'bar', new Set([
        {
          baz: {
            qux: {
              quz: [
                'quux',
                'quuz'
              ]
            }
          }
        },
        {
          lorem: {
            ipsum: 'dolor'
          }
        }
      ])
    )
  ]
}

// returns:
// [
//   {
//     path: [ 'foo', '0', 'bar', '0', 'baz', 'qux', 'quz', '0' ],
//     value: 'quux' },
//   { path: [ 'foo', '0', 'bar', '0', 'baz', 'qux', 'quz', '1' ],
//     value: 'quuz' },
//   { path: [ 'foo', '0', 'bar', '1', 'lorem', 'ipsum' ],
//     value: 'dolor'
//   }
// ]

props(data)

Verbose Options

const data = { foo: { bar: 'baz' } }
Object.freeze(data.foo)

// returns:
// [
//   {
//     path: ['foo'],
//     value: { bar: 'baz' },
//     writable: true,
//     enumerable: true,
//     configurable: true,
//     parentIsFrozen: false,
//     parentIsSealed: false,
//     parentIsExtensible: true
//   },
//   {
//     path: [ 'foo', 'bar' ],
//     value: 'baz',
//     writable: false,
//     enumerable: true,
//     configurable: false,
//     parentIsFrozen: true,
//     parentIsSealed: true,
//     parentIsExtensible: false
//   }
// ]

props(data, { stepwise: true, descriptors: true, permissions: true })

Documentation

Returns: Array.<PropAt> | Search - Array of paths and values or references. Returns Search generator if opt.gen is true.

ParamTypeDefaultDescription
hostHostObject to unpack.
[opt]Options{}Execution settings.

Options : Object

See: Options

Execution-wide settings supplied to the module. Modifies types of data attached to results. Modifies types of children to extract.

Properties

NameTypeDefaultDescription
[inherited]booleanWhether or not to search for inherited properties. Attaches these keys behind a '__proto__' key.
[own]booleantrueWhether or not to search for own properties. Defaults to true.
[nonEnumerable]booleanWhether or not to search for and return non-enumerable properties.
[permissions]booleanWhether or not to attach Permissions to results.
[descriptors]booleanWhether or not to attach property descriptors other than 'value' to results.
[stepwise]booleanWhether or not to yield a PropAt object at every step down the chain.
[includeRefValues]booleanWhether or not to attach a value to Props with Refs attached.
[gen]booleanWhether or not to return a generator instead of executing the entire search.
[full]booleanIf true, replaces undefined Options with maximum search settings (All options except for propsCustomizer will be set to true). User supplied options supercede any changes here.
[propsCustomizer]PropsCustomizerFunction used for custom extraction of PropEntries from a Target.

PropAt : Object

See: PropAt

Description of a given level of the chain. Transformed Prop Object with location attched.

Properties

NameTypeDescription
[host]HostWhen a non-primitive key has been encountered, a separate chain will be created with that key. Items on that chain will be labeled with a 'host' property to specify which host the path applies to. PropAt Objects lacking a 'host' property imply that the path applies to the initially supplied Host.
pathPathDescribes the steps taken from the Host in order to reach the Prop's value.
[value]*Value described at the Prop's location (if any). In cases of a previously discovered reference (circular or otherwise), value will be replaced with a ref property (unless opt.showRefValues is true).
[writable]boolean'Writable' property descriptor of the value.
[enumerable]boolean'Enumerable' property descriptor of the value.
[configurable]boolean'Configurable' property descriptor of the value.
[parentIsFrozen]booleanFrozen status of the parent object.
[parentIsSealed]booleanSealed status of the parent object.
[parentIsExtensible]booleanExtensible status of the parent object.
[ref]RefIf the value strictly equals a previously discovered Target, the Host and Path of that Target will be provided.

See

Versioning

Versioned using SemVer. For available versions, see the tags on this repository.

Author

  • Justin Collier - jpcx

License

This project is licensed under the MIT License - see the LICENSE file for details

Keywords

FAQs

Package last updated on 27 Apr 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc