mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
9265b0185a
Partial #52, fixes #49, fixes #46
9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
define(function() {
|
|
return {
|
|
id: "javascript",
|
|
assertCode: "function assert(condition, message) { \nif (!condition) { \n throw message || \"Assertion failed\"; \n } \n }\n",
|
|
REPL: JSREPL,
|
|
sep: ";\n",
|
|
};
|
|
});
|