Library for generating safe strings that redact sensitive information
npm install @exodus/safe-stringBuild safe strings that can be used in error messages and stack traces without leaking sensitive information.
``ts
import { safeString, isSafe } from '@exodus/safe-string'
const planet = 'world'
const result = safeStringHello ${planet}
console.log(result) // 'Hello
isSafe(result) // true
``