action-debian-package/node_modules/fast-redact/example/top-wildcard-object.js
Dawid Dziurla 9308795b8b
update
2020-03-26 15:37:35 +01:00

10 lines
297 B
JavaScript

'use strict'
const fastRedact = require('..')
const redact = fastRedact({ paths: ['*.c.d'] })
const obj = {
x: { c: { d: 'hide me', e: 'leave me be' } },
y: { c: { d: 'and me', f: 'I want to live' } },
z: { c: { d: 'and also I', g: 'I want to run in a stream' } }
}
console.log(redact(obj))