Sha256: ab9fa5cd5d4d0a177771294cf845b21a57dca9057be3f01eeb79ac194deae678

Contents?: true

Size: 973 Bytes

Versions: 13

Compression:

Stored size: 973 Bytes

Contents

'use strict';
var $ = require('../internals/export');
var $indexOf = require('../internals/array-includes').indexOf;
var arrayMethodIsStrict = require('../internals/array-method-is-strict');
var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');

var nativeIndexOf = [].indexOf;

var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;
var STRICT_METHOD = arrayMethodIsStrict('indexOf');
var USES_TO_LENGTH = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 });

// `Array.prototype.indexOf` method
// https://tc39.github.io/ecma262/#sec-array.prototype.indexof
$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD || !USES_TO_LENGTH }, {
  indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
    return NEGATIVE_ZERO
      // convert -0 to +0
      ? nativeIndexOf.apply(this, arguments) || 0
      : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);
  }
});

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/modules/es.array.index-of.js
tang-0.2.1 spec/tang_app/node_modules/core-js/modules/es.array.index-of.js
tang-0.2.0 spec/tang_app/node_modules/core-js/modules/es.array.index-of.js
tang-0.1.0 spec/tang_app/node_modules/core-js/modules/es.array.index-of.js
tang-0.0.9 spec/tang_app/node_modules/core-js/modules/es.array.index-of.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/modules/es.array.index-of.js
condenser-0.3 lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js
condenser-0.2 lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js
condenser-0.1 lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js
condenser-0.0.12 lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js
condenser-0.0.11 lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js
condenser-0.0.10 lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js
condenser-0.0.9 lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js