Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 3x | import { nanoid as _nanoid } from 'nanoid' /** * 生成一个 [nanoid](https://github.com/ai/nanoid/)。 * * @param size 生成的 ID 长度,默认 21 * @example * ```typescript * nanoid() // => "Uakgb_J5m9g-0JDMbcJqL" * ``` */ export function nanoid(size?: number): string { return _nanoid(size) } |