Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/array-buffer-byte-length/index.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +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