UNPKG

@thi.ng/strings

Version:

Various string formatting & utility functions

9 lines (8 loc) 260 B
const stringify = (all = false, indent) => (x) => all || typeof x !== "string" && typeof x !== "number" ? JSON.stringify( x instanceof Error ? x.stack ?? x.message : x instanceof RegExp ? x.source : x, null, indent ) : String(x); export { stringify };