UNPKG

@cowwoc/requirements

Version:

A fluent API for enforcing design contracts with automatic message generation.

9 lines 287 B
/** * @param value - a value * @returns true if the value has the number of parameters expected by `ErrorBuilder` */ function isErrorBuilder(value) { return typeof (value) === "function" && value.length === 1; } export { isErrorBuilder }; //# sourceMappingURL=ErrorBuilder.mjs.map