UNPKG

@safejs/serializer

Version:

Serializer is a superset of JSON that includes recursive objects, dates, regular expressions, functions and others which you also can expand by yourself

14 lines (13 loc) 330 B
export declare class Refs { private prefix; private regExp; private count; constructor({ prefix }?: { prefix?: string; }); test(value: any): boolean; get(idx: number): string; create(value: string | number): string; private createRegExp; } export declare const refs: Refs;