source: imaps-frontend/node_modules/data-view-byte-length/index.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 506 bytes
Line 
1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var callBound = require('call-bind/callBound');
6
7var $dataViewByteLength = callBound('DataView.prototype.byteLength', true);
8
9var isDataView = require('is-data-view');
10
11// node <= 0.10, < 0.11.4 has a nonconfigurable own property instead of a prototype getter
12/** @type {import('.')} */
13module.exports = $dataViewByteLength || function byteLength(x) {
14 if (!isDataView(x)) {
15 throw new $TypeError('not a DataView');
16 }
17
18 return x.byteLength;
19};
Note: See TracBrowser for help on using the repository browser.