summaryrefslogtreecommitdiffstats
path: root/theme/javascript/execute/javascript.js
blob: d96703864ce4180210de2222379854f8ea6b0002 (plain)
1
2
3
4
5
6
7
define(function() {
    return {
        id: "javascript",
        assertCode: "function assert(condition, message) { \nif (!condition) { \n throw message || \"Assertion failed\"; \n } \n }\n",
        REPL: JSREPL
    };
});