- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
12 lines
374 B
JavaScript
12 lines
374 B
JavaScript
'use strict';
|
|
|
|
var $BigInt = typeof BigInt !== 'undefined' && BigInt;
|
|
|
|
/** @type {import('.')} */
|
|
module.exports = function hasNativeBigInts() {
|
|
return typeof $BigInt === 'function'
|
|
&& typeof BigInt === 'function'
|
|
&& typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers
|
|
&& typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers
|
|
};
|