aboutsummaryrefslogtreecommitdiffstats
path: root/tools/may_execute_js_code.js
blob: 2dec177d02e1797beb575cb08283c75964ec08c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
/**
 * Runs the javascript code in node.js.
 * @typedef {Object} Args
 * @property {string} code - Javascript code to execute, such as `console.log("hello world")`
 * @param {Args} args
 */
exports.main = function main({ code }) {
  eval(code);
}