You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
479 B
23 lines
479 B
4 years ago
|
'use strict'
|
||
|
|
||
|
module.exports = state
|
||
|
|
||
|
function state (o) {
|
||
|
const {
|
||
|
secret,
|
||
|
censor,
|
||
|
isCensorFct,
|
||
|
compileRestore,
|
||
|
serialize,
|
||
|
groupRedact,
|
||
|
nestedRedact,
|
||
|
wildcards,
|
||
|
wcLen
|
||
|
} = o
|
||
|
const builder = [{ secret, censor, isCensorFct, compileRestore }]
|
||
|
builder.push({ secret })
|
||
|
if (serialize !== false) builder.push({ serialize })
|
||
|
if (wcLen > 0) builder.push({ groupRedact, nestedRedact, wildcards, wcLen })
|
||
|
return Object.assign(...builder)
|
||
|
}
|