export function assert()

in src/utils.js [19:23]


export function assert(cond, msg) {
  if (! cond) {
    throw new Error('assert failed: ' + msg);
  }
}