1.1.0 • Published 1 year ago

json-nested-replace v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
1 year ago

json-nested-replace

Build NPM Version NPM Downloads Github Repo Size LICENSE Contributors Commit

Searches and replace values at every level of nested json

Give us a :star: if you like our work :heart:

Install

$ npm install json-nested-replace

Usage

const jnestedReplace = require('json-nested-replace');

const INPUT_JSON = {
  'name': 'json-nested-replace',
  'author': 'Arshad Kazmi',
  'repository': {
    'url': 'https://github.com/arshadkazmi42/json-nested-replace',
    'language': 'js'
  }
};

const replacedJSONValue = jnestedReplace(INPUT_JSON, 'json-nested-replace', 'jnested-replace', ['url']);
console.log(replacedJSONValue);
// Output
/** {
 *   'name': 'jnested-replace',
 *   'author': 'Arshad Kazmi',
 *   'repository': {
 *     'url': 'https://github.com/arshadkazmi42/json-nested-replace',
 *     'language': 'js'
 *   }
 * }
 **/

Function Parameters

Function jnestedReplace takes following parameters respectively

  • input: Object/Array on which nested replace to apply
  • searchValue: Value which needs to be replaced in the JSON
  • newValue: New Value which needs to be added in place of searchValue
  • skipKeys: Optinal field, if any key needs to be skipped from this replacing

Contributing

Interested in contributing to this project? You can log any issues or suggestion related to this library here

Read our contributing guide on getting started with contributing to the codebase

Contributors

Thank you to all the contributors who have helped us in making this project better :raised_hands: