vanzy-protect
Version:
Epic Obfuscator Yeahhh
10 lines (9 loc) • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.unaryExpression = void 0;
const comment_1 = require("../obfuscate/comment");
const rightExpression_1 = require("./rightExpression");
function unaryExpression(expr) {
return expr.operator + (0, comment_1.comment)(1) + '(' + (0, rightExpression_1.rightExpression)(expr.argument) + ')';
}
exports.unaryExpression = unaryExpression;