main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

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

@@ -0,0 +1,19 @@
'use strict';
var $TypeError = require('es-errors/type');
var callBound = require('call-bind/callBound');
var $dataViewByteOffset = callBound('DataView.prototype.byteOffset', 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 = $dataViewByteOffset || function byteOffset(x) {
if (!isDataView(x)) {
throw new $TypeError('not a DataView');
}
return x.byteOffset;
};