ohctechv3/.svn/pristine/c4/c4ca399099723116dad64f51877a66252f501391.svn-base
2024-10-28 15:03:36 +05:30

13 lines
298 B
Plaintext

'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';
};