opentype.js
Version:
OpenType font parser
17 lines (13 loc) • 396 B
JavaScript
// Run-time checking of preconditions.
function fail(message) {
throw new Error(message);
}
// Precondition function that checks if the given predicate is true.
// If not, it will throw an error.
function argument(predicate, message) {
if (!predicate) {
fail(message);
}
}
export { fail, argument, argument as assert };
export default { fail, argument, assert: argument };