1.0.3 • Published 5 years ago
mask-json-path v1.0.3
mask-json-path
Mask values from given JSON (objects / arrays). Useful in protecting confidential data, mask it before sending it to third party applications.
Installation
$ npm i mask-json-pathOR
$ yarn install mask-json-pathUsage
const maskJson = require('mask-json-path')('***') // values will be replaced with '***'
const pathsToBeMasked = ['block[].price'];
const mockData = {"block":[{"type":"article","id":"1","price":"$40"},{"type":"article","id":"2","price":"$50"}]}
const maskedData = maskJson(mockData, pathsToBeMasked);
// maskedData = {"block":[{"type":"article","id":"1","price":"***"},{"type":"article","id":"2","price":"***"}]}Note that input json object gets modified in the process, cloning isn't done.
Tests
$ npm test OR
$ yarn testLicense
MIT