Sha256: 8f1f1d7b8ebb15b5b82d66e07078c3001988b807bdc3323e8a17cc246c444c34
Contents?: true
Size: 298 Bytes
Versions: 244
Compression:
Stored size: 298 Bytes
Contents
'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'; };
Version data entries
244 entries across 61 versions & 3 rubygems