anobis
Version:
JavaScript obfuscator
23 lines (19 loc) • 439 B
text/typescript
import { ISourceCode } from './interfaces/ISourceCode';
export class SourceCode implements ISourceCode {
/**
* @type {string}
*/
private readonly sourceCode: string;
/**
* @param {string} sourceCode
*/
constructor (sourceCode: string) {
this.sourceCode = sourceCode;
}
/**
* @returns {string}
*/
public getSourceCode (): string {
return this.sourceCode;
}
}