Socket
Socket
Sign inDemoInstall

deeks

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deeks

Retrieve all keys and nested keys from objects and arrays of objects.


Version published
Weekly downloads
368K
decreased by-10.35%
Maintainers
1
Weekly downloads
 
Created
Source

deeks - Deep Object Key Extraction

Dependencies Downloads NPM version Known Vulnerabilities Package Size

Build Status Maintainability Test Coverage Donate

Retrieve all keys and nested keys from objects and arrays of objects.

Installing

npm install --save deeks

Example:

let keys = require('deeks'),
	docPath = require('doc-path');

let generatedKeys = keys.deepKeys({
	make: 'Nissan',
	model: 'GT-R',
	trim: 'NISMO',
	specifications: [
	    {mileage: 10},
	    {cylinders: 6}
	]
}, {
    expandArrayObjects: true,
    ignoreEmptyArraysWhenExpanding: true
});
// => ['make', 'model', 'trim', 'specifications.mileage', 'specifications.cylinders']

generatedKeys.forEach((key) => 
    console.log(
        docPath.evaluatePath(key)
    )
)
// Console Output:
// Nissan
// GT-R
// NISMO
// 10
// 6

API

deepKeys(object)

keys.deepKeys(object, options)

Returns all keys in an object, even if they're nested several layers deep. The array of keys that is returned can then be used with the doc-path module to get and set values at a specific key path.

Options (optional):

  • expandArrayObjects - Boolean (Default: false) - Should objects appearing in arrays in the provided object also be expanded, such that keys appearing in those objects are extracted and included in the returned key path list?
    • Example:
    {
    	"make": "Nissan",
    	"model": "GT-R",
    	"trim": "NISMO",
    	"specifications": [
    		{"mileage": 10},
    		{"cylinders": 6}
    	]
    }
    
    • expandArrayObjects = false results in: ['make', 'model', 'trim', 'specifications']
    • expandArrayObjects = true results in: ['make', 'model', 'trim', 'specifications.mileage', 'specifications.cylinders']
  • ignoreEmptyArraysWhenExpanding - Boolean (Default: false) - Should empty array keys be ignored when expanding array objects?
    • Note: This only has an effect when used with expandArrayObjects.
    • Example:
    { 
    	"features": [ {"name": "A/C" }],
    	"rebates": []
    }
    
    • ignoreEmptyArraysWhenExpanding = false results in: ['features.name', 'rebates']
    • ignoreEmptyArraysWhenExpanding = true results in: ['features.name']

Returns: Array[String]

Example: ['make', 'model', 'specifications.odometer.miles', 'specifications.odometer.kilometers']

deepKeysFromList(array)

keys.deepKeysFromList(array)

Returns all keys in each object in the array, even if the keys are nested several layers deep in each of the documents. These can also be used with the doc-path module.

Options (optional):

  • expandArrayObjects - Boolean (Default: false) - Should objects appearing in arrays in the provided object also be expanded, such that keys appearing in those objects are extracted and included in the returned key path list?
    • Example:
    {
    	"make": "Nissan",
    	"model": "GT-R",
    	"trim": "NISMO",
    	"specifications": [
    		{"mileage": 10},
    		{"cylinders": 6}
    	]
    }
    
    • expandArrayObjects = false results in: ['make', 'model', 'trim', 'specifications']
    • expandArrayObjects = true results in: ['make', 'model', 'trim', 'specifications.mileage', 'specifications.cylinders']
  • ignoreEmptyArraysWhenExpanding - Boolean (Default: false) - Should empty array keys be ignored when expanding array objects?
    • Note: This only has an effect when used with expandArrayObjects.
    • Example:
    [
    	{ "features": [ {"name": "A/C" }] },
    	{ "features": [] }
    ] 
    
    • ignoreEmptyArraysWhenExpanding = false results in: ['features.name', 'features']
    • ignoreEmptyArraysWhenExpanding = true results in: ['features.name']

Returns: Array[Array[String]]

Example: [ ['make', 'model', 'specifications.odometer.miles', 'specifications.odometer.kilometers'] ]

Examples

This module integrates really nicely with the doc-path module, which allows the programmatic getting and setting of key paths produced by this module.

Here's an example of how this works:

const path = require('doc-path'),
      keys = require('deeks');

let car = {
		make: 'Nissan',
		model: 'GT-R',
		trim: 'NISMO',
		specifications: {
			mileage: 10,
			cylinders: '6'
		}
	},
	
	carKeys = keys.deepKeys(car);

for(let keyPath of carKeys) {
    // Clear all values
    path.setPath(car, keyPath, '');
}

Tests

$ npm test

Note: This requires mocha, should, and underscore.

To see test coverage, please run:

$ npm run coverage

Current Coverage is:

Statements   : 100% ( 46/46 )
Branches     : 100% ( 30/30 )
Functions    : 100% ( 9/9 )
Lines        : 100% ( 45/45 )

Keywords

FAQs

Package last updated on 27 Jan 2019

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