-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanguage.js
More file actions
27 lines (27 loc) · 512 Bytes
/
Copy pathLanguage.js
File metadata and controls
27 lines (27 loc) · 512 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* Output language for generated decryptor code (`lang` request field).
*/
export const Language = Object.freeze({
Cpp: 'cpp',
CSharp: 'csharp',
VbNet: 'vbnet',
Delphi: 'delphi',
Java: 'java',
JavaScript: 'js',
Python: 'python',
Ruby: 'ruby',
AutoIt: 'autoit',
PowerShell: 'powershell',
Haskell: 'haskell',
Masm: 'masm',
Fasm: 'fasm',
Go: 'go',
Rust: 'rust',
Swift: 'swift',
Kotlin: 'kotlin',
Lua: 'lua',
Dart: 'dart',
Php: 'php',
Objc: 'objc',
Nasm: 'nasm',
});