mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 07:35:16 +00:00
9 lines
247 B
JavaScript
Executable File
9 lines
247 B
JavaScript
Executable File
define(function() {
|
|
return {
|
|
id: "javascript",
|
|
assertCode: "function assert(condition, message) { \nif (!condition) { \n throw message || \"Assertion failed\"; \n } \n }\n",
|
|
REPL: JSREPL,
|
|
sep: ";\n",
|
|
};
|
|
});
|