All files / lib/internal assert.js

100% Statements 25/25
100% Branches 6/6
100% Functions 3/3
100% Lines 25/25

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2620x 20x 20x 30x 30x 10x 10x 30x 30x 20x 298815x 298815x 28x 28x 28x 298815x 20x 2x 2x 2x 2x 20x 20x 20x 20x  
'use strict';
 
let error;
function lazyError() {
  if (!error) {
    error = require('internal/errors').codes.ERR_INTERNAL_ASSERTION;
  }
  return error;
}
 
function assert(value, message) {
  if (!value) {
    const ERR_INTERNAL_ASSERTION = lazyError();
    throw new ERR_INTERNAL_ASSERTION(message);
  }
}
 
function fail(message) {
  const ERR_INTERNAL_ASSERTION = lazyError();
  throw new ERR_INTERNAL_ASSERTION(message);
}
 
assert.fail = fail;
 
module.exports = assert;