funnycode
Version:
obfuscation {js,ts,cjs,mjs} code
13 lines (11 loc) • 552 B
TypeScript
declare const cwd: string;
declare const KEYFILE = ".funnycode";
declare const CONFIG = "funnycode.config";
declare const CACHE_PATH: string;
declare function isDir(path: string): boolean;
declare function isUnixBashShellPath(path: string): boolean;
declare function winPath(path: string): string;
declare function error(code: number): void;
declare function getKey(): string | undefined;
declare function loadCache(): Record<string, string>;
export { CACHE_PATH, CONFIG, KEYFILE, cwd, error, getKey, isDir, isUnixBashShellPath, loadCache, winPath };