UNPKG

petite-utils

Version:

A collection of small util function in JavaScript.

9 lines (8 loc) 272 B
/** * @group 工具函数 * @param [min=7] 最小长度 * @param [max=36] 最大长度 * @param [startLetter=true] 是否需要字母开头 * @returns */ export declare function randomStr(min?: number | string, max?: number | string, startLetter?: boolean): string;