source: imaps-frontend/node_modules/has-bigints/index.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 347 bytes
RevLine 
[d565449]1'use strict';
2
3var $BigInt = typeof BigInt !== 'undefined' && BigInt;
4
5module.exports = function hasNativeBigInts() {
6 return typeof $BigInt === 'function'
7 && typeof BigInt === 'function'
8 && typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers
9 && typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers
10};
Note: See TracBrowser for help on using the repository browser.