@typed/test
Version:
Simple test framework
10 lines • 339 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var AssertionError_1 = require("./AssertionError");
function notOk(actual) {
if (!actual)
return actual;
throw new AssertionError_1.AssertionError("Value is truthy", true, actual, notOk);
}
exports.notOk = notOk;
//# sourceMappingURL=notOk.js.map