astro-ghostcms/.pnpm-store/v3/files/6a/d0478c82350fe3ec7cd4c8981c8...

67 lines
1.8 KiB
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
var forEach = require('for-each');
var callBind = require('call-bind');
var typedArrays = require('available-typed-arrays')();
var getters = {};
var hasProto = require('has-proto')();
var gOPD = Object.getOwnPropertyDescriptor;
var oDP = Object.defineProperty;
if (gOPD) {
var getByteLength = function (x) {
return x.byteLength;
};
forEach(typedArrays, function (typedArray) {
// In Safari 7, Typed Array constructors are typeof object
if (typeof global[typedArray] === 'function' || typeof global[typedArray] === 'object') {
var Proto = global[typedArray].prototype;
var descriptor = gOPD(Proto, 'byteLength');
if (!descriptor && hasProto) {
var superProto = Proto.__proto__; // eslint-disable-line no-proto
descriptor = gOPD(superProto, 'byteLength');
}
// Opera 12.16 has a magic byteLength data property on instances AND on Proto
if (descriptor && descriptor.get) {
getters[typedArray] = callBind(descriptor.get);
} else if (oDP) {
// this is likely an engine where instances have a magic byteLength data property
var arr = new global[typedArray](2);
descriptor = gOPD(arr, 'byteLength');
if (descriptor && descriptor.configurable) {
oDP(arr, 'length', { value: 3 });
}
if (arr.length === 2) {
getters[typedArray] = getByteLength;
}
}
}
});
}
var tryTypedArrays = function tryAllTypedArrays(value) {
var foundByteLength;
forEach(getters, function (getter) {
if (typeof foundByteLength !== 'number') {
try {
var byteLength = getter(value);
if (typeof byteLength === 'number') {
foundByteLength = byteLength;
}
} catch (e) {}
}
});
return foundByteLength;
};
var isTypedArray = require('is-typed-array');
module.exports = function typedArrayByteLength(value) {
if (!isTypedArray(value)) {
return false;
}
return tryTypedArrays(value);
};