restringer
Version:
Deobfuscate Javascript with emphasis on reconstructing strings
13 lines (12 loc) • 608 B
JavaScript
/**
* Mapping specific obfuscation type to their processors, which are lazily loaded.
*/
export const processors = {
'caesar_plus': await import('./caesarp.js'),
'obfuscator.io': await import('./obfuscatorIo.js'),
'augmented_array_replacements': await import('./augmentedArray.js'),
'function_to_array_replacements': await import('./functionToArray.js'),
'proxied_augmented_array_replacements': await import('./augmentedArray.js'),
'augmented_array_function_replacements': await import('./augmentedArray.js'),
'augmented_proxied_array_function_replacements': await import('./augmentedArray.js'),
};