UNPKG

162 BJavaScriptView Raw
1'use strict';
2
3const AssertionError = require('assertion-error');
4
5function fail(reason) {
6 throw new AssertionError(reason, {}, fail);
7}
8
9module.exports = fail;