UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 224 B
/** * Joins strings with the specified separator inserted between each value. * Null values and empty strings will be excluded. */ declare function join(items: any, separator?: string): string; export default join;