Urara-Blog/node_modules/.pnpm-store/v3/files/f2/a5668e752ac05a4fad7e9a727a3a05bddafed490eab56e24d124fdd466d4e44bc50fde60b6ed71118f2d7f1a1023dbf57c82b7c5709a76c8623483181f7ca5
2022-08-14 01:14:53 +08:00

11 lines
266 B
Text

'use strict';
// https://262.ecma-international.org/11.0/#sec-isunsignedelementtype
module.exports = function IsUnsignedElementType(type) {
return type === 'Uint8'
|| type === 'Uint8C'
|| type === 'Uint16'
|| type === 'Uint32'
|| type === 'BigUint64';
};