@lazy-cjk/zh-slugify
Version:
14 lines (13 loc) • 390 B
TypeScript
/**
* Created by user on 2020/5/29.
*/
import { IOptions } from '@lazy-cjk/zh-table-list/list';
/**
* 用來標準化字串 作為排序用
*/
export declare function slugify(input: string, options?: IOptions, unsafe2?: boolean): string;
/**
* 用來標準化字串 作為排序用
*/
export declare function slugify(input: string, unsafe2?: boolean): string;
export default slugify;