mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
var cp = require("child_process")
|
|
|
|
module.exports = function (name) { // $ Source
|
|
cp.exec("rm -rf " + name); // $ Alert - is imported from main module.
|
|
};
|
|
|
|
module.exports.foo = function (name) { // $ Source
|
|
cp.exec("rm -rf " + name); // $ Alert - is imported from main module.
|
|
};
|