UNPKG

foxts

Version:

Opinionated collection of common TypeScript utils by @SukkaW

7 lines (5 loc) 216 B
/** * A 200% faster join than the native `Array.prototype.join` for string arrays and string separator. */ declare function fastStringArrayJoin(arr: string[], sep: string): string; export { fastStringArrayJoin };