Urara-Blog/node_modules/.pnpm-store/v3/files/30/8ac2f1c00ac255570ef735c52b1ba93e4d6136100399dbaf0a217a196add5662035a09b3def06447e4ec74d8dccac5d39a4abda38fdb073ed2ca04ba816575
2022-08-14 01:14:53 +08:00

12 lines
298 B
Text

'use strict';
// https://262.ecma-international.org/11.0/#sec-isunclampedintegerelementtype
module.exports = function IsUnclampedIntegerElementType(type) {
return type === 'Int8'
|| type === 'Uint8'
|| type === 'Int16'
|| type === 'Uint16'
|| type === 'Int32'
|| type === 'Uint32';
};