UNPKG

always-helper

Version:

前端项目开发中,经常会用到一些工具函数的合集。

10 lines (9 loc) 257 B
/** * 随机字符串 * 应用场景:有时候为了 mock 字符串名称,然后随机验证的业务会用到 */ declare const randomString: (options?: number | { length?: number; charset?: string; }) => string; export default randomString;