Socket
Socket
Sign inDemoInstall

object-fields

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object-fields

Utility functions around object paths


Version published
Weekly downloads
512
increased by75.95%
Maintainers
1
Weekly downloads
 
Created
Source

object-fields

Build Status Test Coverage Dependabot Status Dependencies NPM Downloads Semantic-Release Gardener

Utility functions around object paths

Install

$ npm i --save object-fields

Usage

const objectPaths = require('object-fields');

objectPaths.split('data(file1,file2)');
// => ["data.file1", "data.file2"]
objectPaths.join(['data', 'data']);
// => "data"
objectPaths.join(['path.to.thing', 'path.to.other.thing']);
// => "path.to(thing,other.thing)"
objectPaths.getParents(['child', 'parent.child', 'grandparent.parent.child']);
// => ['parent', 'grandparent', 'grandparent.parent']

Methods

split

Takes a shortened input string and separates it into an array.

join

Takes array of selectors and shortens it into a string

getParents

Takes array of selectors and returns unique, true parents.

retain

Takes object and array of selectors. Removes non selected fields from object.

Known Limitations

This package does not currently support escaping.

Keywords

FAQs

Package last updated on 05 May 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