action-debian-package/node_modules/fast-redact/example/default-usage.js

15 lines
353 B
JavaScript
Raw Normal View History

2020-03-26 14:37:35 +00:00
'use strict'
const fastRedact = require('..')
const fauxRequest = {
headers: {
host: 'http://example.com',
cookie: `oh oh we don't want this exposed in logs in etc.`,
referer: `if we're cool maybe we'll even redact this`
}
}
const redact = fastRedact({
paths: ['headers.cookie', 'headers.referer']
})
console.log(redact(fauxRequest))