astro-ghostcms/.pnpm-store/v3/files/6e/7f8aa176de976b78b263565f256...

18 lines
483 B
Plaintext
Raw Normal View History

2024-02-14 19:45:06 +00:00
'use strict';
var $TypeError = require('es-errors/type');
var callBound = require('call-bind/callBound');
var $typedArrayBuffer = callBound('TypedArray.prototype.buffer', true);
var isTypedArray = require('is-typed-array');
// node <= 0.10, < 0.11.4 has a nonconfigurable own property instead of a prototype getter
module.exports = $typedArrayBuffer || function typedArrayBuffer(x) {
if (!isTypedArray(x)) {
throw new $TypeError('Not a Typed Array');
}
return x.buffer;
};