bguard
Version:
**bguard** is a powerful, flexible, and type-safe validation library for TypeScript. It allows developers to define validation schemas for their data structures and ensures that data conforms to the expected types and constraints.
18 lines (13 loc) • 738 B
JavaScript
;Object.defineProperty(exports, "__esModule", {value: true});
var _chunkTJQ5NVL4js = require('./chunk-TJQ5NVL4.js');
// src/asserts/bigint/bigintMinExcluded.ts
var bigintMinExcludedErrorMessage = "The received value is less than or equal to expected";
var bigintMinExcludedErrorKey = "bi:minExcluded";
var bigintMinExcluded = (expected) => (received, ctx) => {
if (expected >= received) ctx.addIssue(expected, received, bigintMinExcludedErrorKey);
};
bigintMinExcluded.key = bigintMinExcludedErrorKey;
bigintMinExcluded.message = bigintMinExcludedErrorMessage;
_chunkTJQ5NVL4js.setToDefaultLocale.call(void 0, bigintMinExcluded);
exports.bigintMinExcluded = bigintMinExcluded;
//# sourceMappingURL=chunk-Z2HZXSDA.js.map