liusuyi
2023-04-24 4737f1e038743ced243c9e52423404d9034d6107
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
38
39
40
41
42
43
'use strict';
 
var callBind = require('call-bind');
var callBound = require('call-bind/callBound');
var GetIntrinsic = require('get-intrinsic');
var isTypedArray = require('is-typed-array');
 
var $ArrayBuffer = GetIntrinsic('ArrayBuffer', true);
var $Float32Array = GetIntrinsic('Float32Array', true);
var $byteLength = callBound('ArrayBuffer.prototype.byteLength', true);
 
// in node 0.10, ArrayBuffers have no prototype methods, but have an own slot-checking `slice` method
var abSlice = $ArrayBuffer && !$byteLength && new $ArrayBuffer().slice;
var $abSlice = abSlice && callBind(abSlice);
 
module.exports = $byteLength || $abSlice
    ? function isArrayBuffer(obj) {
        if (!obj || typeof obj !== 'object') {
            return false;
        }
        try {
            if ($byteLength) {
                $byteLength(obj);
            } else {
                $abSlice(obj, 0);
            }
            return true;
        } catch (e) {
            return false;
        }
    }
    : $Float32Array
        // in node 0.8, ArrayBuffers have no prototype or own methods
        ? function IsArrayBuffer(obj) {
            try {
                return (new $Float32Array(obj)).buffer === obj && !isTypedArray(obj);
            } catch (e) {
                return false;
            }
        }
        : function isArrayBuffer(obj) { // eslint-disable-line no-unused-vars
            return false;
        };