UNPKG

@mhysko/s-uuid

Version:

Translate standard UUID to Base68 format and back

10 lines (9 loc) 235 B
declare class Converter { #private; readonly from: string; readonly to: string; constructor(from?: string, to?: string); encode(input: string): string; decode(input: string): string; } export default Converter;