lix-website/themes/lix/assets/bootstrap/node_modules/typed-array-buffer/index.js
2024-04-26 22:49:34 -06:00

19 lines
510 B
JavaScript

'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');
/** @type {import('.')} */
// 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;
};