@kilterset/auth0-actions-testing
Version:
Test and develop Auth0 Actions or Okta CIC Actions locally.
10 lines • 354 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.asn = void 0;
/**
* AS numbers, or ASNs, are unique 16 bit numbers between 1 and 65534 or
* 32 bit numbers between 131072 and 4294967294.
*/
const asn = (chance) => chance.integer({ min: 1, max: 65534 }).toString();
exports.asn = asn;
//# sourceMappingURL=asn.js.map