Changeset 79a0317 for imaps-frontend/node_modules/is-bigint/index.js
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/is-bigint/index.js
r0c6b92a r79a0317 5 5 if (hasBigInts) { 6 6 var bigIntValueOf = BigInt.prototype.valueOf; 7 /** @type {(value: object) => value is BigInt} */ 7 8 var tryBigInt = function tryBigIntObject(value) { 8 9 try { … … 14 15 }; 15 16 17 /** @type {import('.')} */ 16 18 module.exports = function isBigInt(value) { 17 19 if ( … … 33 35 }; 34 36 } else { 37 /** @type {import('.')} */ 35 38 module.exports = function isBigInt(value) { 36 39 return false && value;
Note:
See TracChangeset
for help on using the changeset viewer.