UNPKG

@dotenvx/dotenvx-pro

Version:
12 lines (9 loc) 196 B
const mask = require('./mask') function smartMask (str, unmask = false, showChar = 7) { if (unmask) { return str } else { return mask(str, showChar) } } module.exports = smartMask