UNPKG

succulent

Version:

Powerful and easy runtime type checking

8 lines 258 B
import { Schema } from "../schema"; export function check(x, schema) { if (!Schema.check(schema, x)) { throw new Error("check returned false instead of throwing, which is bad"); } } export { check as guard }; //# sourceMappingURL=check.js.map