UNPKG

core-js

Version:
11 lines (9 loc) 524 B
'use strict'; var arrayIndexOf = require('../internals/array-includes')(false); var ArrayBufferViewCore = require('../internals/array-buffer-view-core'); var aTypedArray = ArrayBufferViewCore.aTypedArray; // `%TypedArray%.prototype.indexOf` method // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.indexof ArrayBufferViewCore.exportProto('indexOf', function indexOf(searchElement /* , fromIndex */) { return arrayIndexOf(aTypedArray(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); });