Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81164 views
1
function assert(test, msg) {
2
if (!test) {
3
throw new Error(msg);
4
}
5
}
6
7
module.exports = assert.ok = assert;
8
9