@hackylabs/deep-redact
Version:
A fast, safe and configurable zero-dependency library for redacting strings or deeply redacting arrays and objects.
16 lines (15 loc) • 361 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._regex = void 0;
const _regex = (value) => {
if (!(value instanceof RegExp))
return value;
return {
_transformer: 'regex',
value: {
source: value.source,
flags: value.flags,
},
};
};
exports._regex = _regex;