javascript-obfuscator
Version:
JavaScript obfuscator
12 lines (11 loc) • 513 B
TypeScript
import { TInputCLIOptions } from '../../types/options/TInputCLIOptions';
export declare class ObfuscatedCodeFileUtils {
private readonly inputPath;
private readonly options;
constructor(inputPath: string, options: TInputCLIOptions);
getOutputCodePath(filePath: string): string;
getOutputSourceMapPath(outputCodePath: string, sourceMapFileName?: string): string;
writeFile(outputPath: string, data: string): void;
private getUniqueSourceMapFileName;
private isDirectoryInputPath;
}