javascript-obfuscator
Version:
JavaScript obfuscator
12 lines (10 loc) • 431 B
text/typescript
import { MakeEnum } from '@gradecam/tsenum';
export const IdentifierNamesGenerator: Readonly<{
DictionaryIdentifierNamesGenerator: 'dictionary';
HexadecimalIdentifierNamesGenerator: 'hexadecimal';
MangledIdentifierNamesGenerator: 'mangled';
}> = MakeEnum({
DictionaryIdentifierNamesGenerator: 'dictionary',
HexadecimalIdentifierNamesGenerator: 'hexadecimal',
MangledIdentifierNamesGenerator: 'mangled'
});