UNPKG

web-background

Version:
10 lines (9 loc) 661 B
export declare function extractIdentifiers(funcStr: string): string[]; export declare function isKeyword(identifier: string): boolean; export declare function isGlobalBuiltIn(identifier: string): boolean; export declare function isParameter(identifier: string, funcStr: string): boolean; export declare function isLocalVariable(identifier: string, funcStr: string): boolean; export declare function isSerializable(value: any): boolean; export declare function getGlobalScope(): Record<string, any>; export declare function extractParametersFromFunction(funcStr: string): Set<string>; export declare function extractLocalVariables(funcStr: string): Set<string>;