PIbd-21_Danilov_V.V._Intern.../Lab3/node_modules/array-buffer-byte-length/index.js
Владимир Данилов 83490711d5 отчет
2023-12-19 20:23:11 +04:00

14 lines
394 B
JavaScript

'use strict';
var callBound = require('call-bind/callBound');
var $byteLength = callBound('ArrayBuffer.prototype.byteLength', true);
var isArrayBuffer = require('is-array-buffer');
module.exports = function byteLength(ab) {
if (!isArrayBuffer(ab)) {
return NaN;
}
return $byteLength ? $byteLength(ab) : ab.byteLength;
}; // in node < 0.11, byteLength is an own nonconfigurable property