ff32c7b2ae9645c76d5efa36b8d7168ff49787f850ecfa5733178764f786acdbc1b72f55e4cd11bc7210f3d10dbbbbcb913a2a1aa9ef8222d90c4b7880e111 194 B

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