UNPKG

@thi.ng/strings

Version:

Various string formatting & utility functions

10 lines (9 loc) 246 B
import { memoizeJ } from "@thi.ng/memoize/memoizej"; const truncate = memoizeJ( (n, suffix = "") => (x) => x.length > n ? x.substring(0, n - suffix.length) + suffix : x ); const truncateRight = truncate; export { truncate, truncateRight };