UNPKG

@iimm/shared

Version:

shared utils on browser and react env

5 lines (4 loc) 339 B
/** 返回1个加了指定盐的内容加密器 */ export declare const byteEncoder: (salt?: string, EncodeURIComponent?: boolean) => (content: any) => string; /** 使用指定盐解密(解密后会尝试JSON.parse) */ export declare const byteDecoder: (salt?: string, EncodeURIComponent?: boolean) => (encodedContent: string) => any;