@jl-org/data-to-ts
Version:
JSON 或者 JS 转 TS
9 lines (8 loc) • 358 B
TypeScript
export declare function jsToJSON(code: string): string;
export declare function delJSDeclare(code: string): string;
export declare function delSemicolons(code: string): string;
export declare function singleQuoteToDouble(code: string): string;
/**
* 转义 JSON 字符串中的特殊字符
*/
export declare function escapeJsonString(str: string): string;