| import { PreconditionFailure } from './PreconditionFailure.js'; | |
| export function pre(expectTruthy) { | |
| if (!expectTruthy) { | |
| throw new PreconditionFailure(); | |
| } | |
| } | |
| import { PreconditionFailure } from './PreconditionFailure.js'; | |
| export function pre(expectTruthy) { | |
| if (!expectTruthy) { | |
| throw new PreconditionFailure(); | |
| } | |
| } | |