Sha256: c23286e48585a7dd1406b2f52cb50a327e0a1e9ac8e258eb4b165d872ad51ea8

Contents?: true

Size: 518 Bytes

Versions: 9

Compression:

Stored size: 518 Bytes

Contents

'use strict';
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
var $indexOf = require('../internals/array-includes').indexOf;

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 $indexOf(aTypedArray(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);
});

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
disco_app-0.18.0 test/dummy/node_modules/core-js/modules/es.typed-array.index-of.js
disco_app-0.18.2 test/dummy/node_modules/core-js/modules/es.typed-array.index-of.js
jester-data-8.0.0 node_modules/core-js/modules/es.typed-array.index-of.js
ezii-os-5.2.1 node_modules/core-js/modules/es.typed-array.index-of.js
ezii-os-2.0.1 node_modules/core-js/modules/es.typed-array.index-of.js
ezii-os-1.1.0 node_modules/core-js/modules/es.typed-array.index-of.js
ezii-os-1.0.0 node_modules/core-js/modules/es.typed-array.index-of.js
ezii-os-0.0.0.1.0 node_modules/core-js/modules/es.typed-array.index-of.js
ezii-os-0.0.0.0.1 node_modules/core-js/modules/es.typed-array.index-of.js