UNPKG

data-view-buffer

Version:

Get the ArrayBuffer out of a DataView, robustly.

20 lines (13 loc) 485 B
'use strict'; var $TypeError = require('es-errors/type'); var callBound = require('call-bound'); var $dataViewBuffer = callBound('DataView.prototype.buffer', 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 = $dataViewBuffer || function dataViewBuffer(x) { if (!isDataView(x)) { throw new $TypeError('not a DataView'); } return x.buffer; };