Belirli Fonksiyonları Hedefleme
Recommended
En iyi performans için vmTargetFunctionsMode seçeneğini kullanarak yalnızca en hassas kodunuzu VM ile obfuscate edin.
Yalnızca özel bir yorumla işaretlenmiş fonksiyonları VM ile obfuscate etmek için vmTargetFunctionsMode: 'comment' ayarlayın. Her iç içe geçme düzeyinde çalışır.
function regularFunction() {
return 'not virtualized';
}
/* javascript-obfuscator:vm */
function sensitiveFunction() {
return 'this will be VM-protected';
}
class MyClass {
/* javascript-obfuscator:vm */
sensitiveMethod() {
return 'method will be VM-protected';
}
}