|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
485 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var $TypeError = require('es-errors/type');
|
|---|
| 4 |
|
|---|
| 5 | var callBound = require('call-bound');
|
|---|
| 6 |
|
|---|
| 7 | var $dataViewBuffer = callBound('DataView.prototype.buffer', true);
|
|---|
| 8 |
|
|---|
| 9 | var 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('.')} */
|
|---|
| 13 | module.exports = $dataViewBuffer || function dataViewBuffer(x) {
|
|---|
| 14 | if (!isDataView(x)) {
|
|---|
| 15 | throw new $TypeError('not a DataView');
|
|---|
| 16 | }
|
|---|
| 17 |
|
|---|
| 18 | return x.buffer;
|
|---|
| 19 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.