UNPKG

@mhysko/s-uuid

Version:

Translate standard UUID to Base68 format and back

8 lines (7 loc) 371 B
export * from 'uuid'; export { default as Suuid } from './Suuid.js'; export declare const translate: (id: string) => string; export declare const validate: (id: string, strict?: boolean) => boolean; export declare const isUuid: (id: string) => boolean; export declare const isSuuid: (id: string, strict?: boolean) => boolean; export declare const generate: () => string;