UNPKG

@goa/goa

Version:

The Goa Source Code For Compilation Into @Goa/Koa That Includes Modules, Tests, Types And Dependencies.

13 lines (11 loc) 241 B
import createError from '@goa/http-errors' /** * @suppress {checkTypes} */ export default function assert(value, status, msg, opts) { if (value) return throw createError(status, msg, opts) } /** * @license MIT jshttp/http-assert */