UNPKG

@jrc03c/js-math-tools

Version:
8 lines (5 loc) 146 B
import { MathError } from "./math-error.mjs" function assert(isTrue, message) { if (!isTrue) throw new MathError(message) } export { assert }