aboutsummaryrefslogtreecommitdiffstats
path: root/tools/may_execute_js_code.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/may_execute_js_code.js')
-rw-r--r--tools/may_execute_js_code.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/may_execute_js_code.js b/tools/may_execute_js_code.js
index 2dec177..4706e07 100644
--- a/tools/may_execute_js_code.js
+++ b/tools/may_execute_js_code.js
@@ -4,6 +4,6 @@
* @property {string} code - Javascript code to execute, such as `console.log("hello world")`
* @param {Args} args
*/
-exports.main = function main({ code }) {
+exports.run = function run({ code }) {
eval(code);
}