UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

11 lines 278 B
/** * Converts any string to slug * @param str the string * @signature * P.slugify(str); * @example * P.slugify("Super ball cup") // => super-ball-cup * @category String */ export declare function slugify(str: string): string; //# sourceMappingURL=slugify.d.ts.map