73a399363f18c99ef472db5abdfec35a211a980a34cf2b104056c6e035f040553a9e9a693fa1bfdd3e250ad55f446432178c3bcf8e12fc0cc7c7922f9c6aa7 194 B

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