UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

9 lines (8 loc) 332 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.maxSafeNat = maxSafeNat; const IntegerArbitrary_1 = require("./_internals/IntegerArbitrary"); const safeMaxSafeInteger = Number.MAX_SAFE_INTEGER; function maxSafeNat() { return new IntegerArbitrary_1.IntegerArbitrary(0, safeMaxSafeInteger); }