'a'
mh-two-thousand-and-two
2024-04-12 44d2c92345cd156a59fc327b3060292a282d2893
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'use strict';
 
var $TypeError = require('es-errors/type');
 
var IsBigIntElementType = require('./IsBigIntElementType');
var IsUnclampedIntegerElementType = require('./IsUnclampedIntegerElementType');
var ValidateTypedArray = require('./ValidateTypedArray');
 
var whichTypedArray = require('which-typed-array');
 
// https://262.ecma-international.org/12.0/#sec-validateintegertypedarray
 
var tableTAO = require('./tables/typed-array-objects');
 
module.exports = function ValidateIntegerTypedArray(typedArray) {
    var waitable = arguments.length > 1 ? arguments[1] : false; // step 1
 
    if (typeof waitable !== 'boolean') {
        throw new $TypeError('Assertion failed: `waitable` must be a Boolean');
    }
 
    var buffer = ValidateTypedArray(typedArray); // step 2
 
    var typeName = whichTypedArray(typedArray); // step 3
 
    var type = tableTAO.name['$' + typeName]; // step 4
 
    if (waitable) { // step 5
        if (typeName !== 'Int32Array' && typeName !== 'BigInt64Array') {
            throw new $TypeError('Assertion failed: `typedArray` must be an Int32Array or BigInt64Array when `waitable` is true'); // step 5.a
        }
    } else if (!IsUnclampedIntegerElementType(type) && !IsBigIntElementType(type)) {
        throw new $TypeError('Assertion failed: `typedArray` must be an integer TypedArray'); // step 6.a
    }
 
    return buffer; // step 7
};