aboutsummaryrefslogtreecommitdiffstats
path: root/tools/may_execute_js_code.js
blob: 4706e07509b1b62a5f47c350450305e98aa823b7 (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.run = function run({ code }) {
  eval(code);
}