Socket
Socket
Sign inDemoInstall

deep-stripper

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    deep-stripper

Strip an object deeply of any key or keys you provide


Version published
Weekly downloads
4
increased by100%
Maintainers
1
Install size
148 kB
Created
Weekly downloads
 

Changelog

Source

v2.1.0

  • Allow array as input, stripping keys from objects in the array and returning other values unchanged

Readme

Source

Deep Stripper

Strip any number of unwanted keys from an object, deeply.

Install

yarn add deep-stripper

Use

deepStrip(obj: Object, ...keys: String) : Object

You can call the function whatever you'd like when you import it. It's first parameter is the object you'd like to strip keys from. Every parameter after that is the name of a key you'd like stripped. A new object is returned and the original object is not mutated.

Example

import deepStrip from 'deep-stripper'

const productGroup = {
  productGroupId: '59115d3fd29c4b172789b2bf',
  name: 'Stripper Starter Kit',
  listingIds: [ '1234567890' ],
  productArray: [
    {
      productId: 'XXX-POLE-CHROME',
      quantity: 1,
      __typename: 'ProductGroupMember'
    },
    {
      productId: 'XXX-PASTIES-BLUE',
      quantity: 2,
      __typename: 'ProductGroupMember'
    }
  ],
  __typename: 'ProductGroup'
}

console.log(deepStrip(productGroup, '__typename', 'productGroupId'))
// Output:

{
  name: 'Stripper Starter Kit',
  listingIds: [ '1234567890' ],
  productArray: [
    {
      productId: 'XXX-POLE-CHROME',
      quantity: 1
    },
    {
      productId: 'XXX-PASTIES-BLUE',
      quantity: 2
    }
  ]
}

Keywords

FAQs

Last updated on 05 Apr 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc