1function assert(test, msg) { 2 if (!test) { 3 throw new Error(msg); 4 } 5} 6 7module.exports = assert.ok = assert; 8 9