@tiddlygit/tiddlywiki
Version:
a non-linear personal web notebook
24 lines (18 loc) • 284 B
JavaScript
/*\
title: test.js
type: application/javascript
module-type: library
testing lib
\*/
exports.assert = function(cond, msg) {
if(!cond) {
if(msg) {
throw msg
} else {
throw "ASSERT FAILED"
}
}
}
exports.print = function() {
console.log.apply(console, arguments);
}