aboutsummaryrefslogtreecommitdiffstats
path: root/tools/execute_js_code.js
blob: bef6454c68df394d69819e5c033a66240c305677 (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 }) {
  return eval(code);
}