UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

5 lines 214 B
import { customAlphabet } from 'nanoid'; var customNanoid = customAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'); export function getAlphanumericId(size) { return customNanoid(size); }