You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
397 B
10 lines
397 B
var $ = require('../internals/export'); |
|
var ArrayBufferViewCore = require('../internals/array-buffer-view-core'); |
|
|
|
var NATIVE_ARRAY_BUFFER_VIEWS = ArrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS; |
|
|
|
// `ArrayBuffer.isView` method |
|
// https://tc39.es/ecma262/#sec-arraybuffer.isview |
|
$({ target: 'ArrayBuffer', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, { |
|
isView: ArrayBufferViewCore.isView |
|
});
|
|
|