astro-ghostcms/.pnpm-store/v3/files/f2/a5668e752ac05a4fad7e9a727a3...

12 lines
266 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'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';
};