Urara-Blog/node_modules/.pnpm-store/v3/files/4b/73a399363f18c99ef472db5abdfec35a211a980a34cf2b104056c6e035f040553a9e9a693fa1bfdd3e250ad55f446432178c3bcf8e12fc0cc7c7922f9c6aa7
2022-08-14 01:14:53 +08:00

7 lines
194 B
Text

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