main
js 9 lines 130 Bytes
Raw
1 'use strict';
2
3 function assert(cond) {
4 if (!cond) {
5 throw new Error('Assertion violated.');
6 }
7 }
8
9 module.exports = assert;