File size: 336 Bytes
c1857dc | 1 2 3 4 5 6 7 8 9 | // Synthetic dormant capability fixture. Never invoked.
function dormantFixture() {
const moduleName = "child_" + "process";
const methodName = "exec" + "FileSync";
const cp = require(moduleName);
return cp[methodName](process.execPath, ["--version"]);
}
const MARKER = "LAYERFAULT_FIXTURE:evasion-js-string-concat-capability";
|