mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
var cp = require("child_process")
|
|
|
|
module.exports = function (name) {
|
|
cp.exec("rm -rf " + name); // NOT OK - functions exported as part of a submodule are also flagged.
|
|
};
|