UNPKG

@thi.ng/strings

Version:

Various string formatting & utility functions

8 lines (7 loc) 213 B
import { memoizeJ } from "@thi.ng/memoize/memoizej"; const truncateLeft = memoizeJ( (n, prefix = "") => (x) => x.length > n ? prefix + x.substring(x.length - n + prefix.length) : x ); export { truncateLeft };