Really-amin's picture
Upload 1460 files
96af7c9 verified
raw
history blame
285 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.pre = pre;
const PreconditionFailure_1 = require("./PreconditionFailure");
function pre(expectTruthy) {
if (!expectTruthy) {
throw new PreconditionFailure_1.PreconditionFailure();
}
}