Initial Save

This commit is contained in:
jackbeeby
2025-03-28 12:30:19 +11:00
parent e381994f19
commit d8773925e8
9910 changed files with 982718 additions and 0 deletions

19
node_modules/data-view-byte-length/index.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
'use strict';
var $TypeError = require('es-errors/type');
var callBound = require('call-bound');
var $dataViewByteLength = callBound('DataView.prototype.byteLength', true);
var isDataView = require('is-data-view');
// node <= 0.10, < 0.11.4 has a nonconfigurable own property instead of a prototype getter
/** @type {import('.')} */
module.exports = $dataViewByteLength || function byteLength(x) {
if (!isDataView(x)) {
throw new $TypeError('not a DataView');
}
return x.byteLength;
};