Really-amin's picture
Upload 1460 files
96af7c9 verified
raw
history blame
174 Bytes
import { PreconditionFailure } from './PreconditionFailure.js';
export function pre(expectTruthy) {
if (!expectTruthy) {
throw new PreconditionFailure();
}
}