projecte_ionic/node_modules/es-abstract/2021/IsBigIntElementType.js
2022-02-09 18:30:03 +01:00

8 lines
194 B
JavaScript
Executable file

'use strict';
// https://262.ecma-international.org/11.0/#sec-isbigintelementtype
module.exports = function IsBigIntElementType(type) {
return type === 'BigUint64' || type === 'BigInt64';
};