Sha256: 0e2f942e0932969b609de49c1769557553fd72d1d4e3b7940627c192427a7138
Contents?: true
Size: 467 Bytes
Versions: 248
Compression:
Stored size: 467 Bytes
Contents
'use strict'; var IsUnclampedIntegerElementType = require('./IsUnclampedIntegerElementType'); var IsBigIntElementType = require('./IsBigIntElementType'); // https://262.ecma-international.org/11.0/#sec-isnotearconfiguration module.exports = function IsNoTearConfiguration(type, order) { if (IsUnclampedIntegerElementType(type)) { return true; } if (IsBigIntElementType(type) && order !== 'Init' && order !== 'Unordered') { return true; } return false; };
Version data entries
248 entries across 64 versions & 5 rubygems