UNPKG

@thi.ng/strings

Version:

Various string formatting & utility functions

5 lines (4 loc) 175 B
const stringify = (all = false, indent) => (x) => all || typeof x !== "string" && typeof x !== "number" ? JSON.stringify(x, null, indent) : String(x); export { stringify };