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

object-rewrite

Package Overview
Dependencies
Maintainers
1
Versions
179
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object-rewrite

Rewrite an Object

  • 1.0.6
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
167
decreased by-36.74%
Maintainers
1
Weekly downloads
 
Created
Source

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

object-rewrite

Rewrite an Object by defining exactly what gets excluded, injected and retained.

Install

npm i --save object-rewrite

Getting Started

Modifies the data object in place. If you need to create a copy consider using _.deepClone().

const objectRewrite = require("object-rewrite");

const data = [{
  guid: "aad8b948-a3de-4bff-a50f-3d59e9510aa9",
  count: 3,
  active: true,
  tags: [{ id: 1 }, { id: 2 }, { id: 3 }]
}, {
  guid: "4409fb72-36e3-4385-b3da-b4944d028dcb",
  count: 4,
  active: true,
  tags: [{ id: 2 }, { id: 3 }, { id: 4 }]
}, {
  guid: "96067a3c-caa2-4018-bcec-6969a874dad9",
  count: 5,
  active: false,
  tags: [{ id: 3 }, { id: 4 }, { id: 5 }]
}];

const rewriter = objectRewrite({
  exclude: {
    "": (key, value, parents) => value.active !== true,
    tags: (key, value, parents) => value.id !== 4
  },
  inject: {
    "": (key, value, parents) => ({ count: value.count + 100 })
  },
  retain: ["count", "active", "tags.id"]
});

rewriter(data);

// => data is now modified
/*
[{
  "count": 103,
  "active": true,
  "tags": []
}, {
  "count": 104,
  "active": true,
  "tags": [{"id": 4}]
}]
*/

The empty needle "" matches top level object(s).

Modifiers

Needles are specified according to object-scan.

Internally the option useArraySelector is set to false.

Functions have signature Fn(key, value, parents) as specified by object-scan. Keys are split (joined is false),

Exclude

Takes object where keys are needles and values are functions. The matches for a needle are removed from the object iff the corresponding function execution returns true.

Inject

Takes object where keys are needles and values are functions. For every match the corresponding function is executed and the result merged into the match. The match and the function response are expected to be objects.

Retain

Array of needles. Matches are kept if not excluded previously. All entries not matched are excluded. Defaults to ["**"] which matches all entries.

Keywords

FAQs

Package last updated on 06 Oct 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