Sha256: f0401d794cda27d9da1eedc08818407c0f92b8afe5e363ea4325cc93daf8eefa

Contents?: true

Size: 464 Bytes

Versions: 35

Compression:

Stored size: 464 Bytes

Contents

'use strict';
module.exports = function (arr, predicate, ctx) {
	if (typeof Array.prototype.findIndex === 'function') {
		return arr.findIndex(predicate, ctx);
	}

	if (typeof predicate !== 'function') {
		throw new TypeError('predicate must be a function');
	}

	var list = Object(arr);
	var len = list.length;

	if (len === 0) {
		return -1;
	}

	for (var i = 0; i < len; i++) {
		if (predicate.call(ctx, list[i], i, list)) {
			return i;
		}
	}

	return -1;
};

Version data entries

35 entries across 34 versions & 15 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/array-find-index/index.js
disco_app-0.18.0 test/dummy/node_modules/array-find-index/index.js
disco_app-0.18.2 test/dummy/node_modules/array-find-index/index.js
tang-0.2.1 spec/tang_app/node_modules/array-find-index/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/array-find-index/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/array-find-index/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/array-find-index/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/array-find-index/index.js
tang-0.2.0 spec/tang_app/node_modules/array-find-index/index.js
tang-0.1.0 spec/tang_app/node_modules/array-find-index/index.js
tang-0.0.9 spec/tang_app/node_modules/array-find-index/index.js
enju_library-0.3.8 spec/dummy/node_modules/array-find-index/index.js
ilog-0.4.1 node_modules/array-find-index/index.js
ilog-0.4.0 node_modules/array-find-index/index.js
ilog-0.3.3 node_modules/array-find-index/index.js
jester-data-8.0.0 node_modules/array-find-index/index.js
ezii-os-5.2.1 node_modules/array-find-index/index.js
ezii-os-2.0.1 node_modules/array-find-index/index.js
ezii-os-1.1.0 node_modules/array-find-index/index.js
ezii-os-1.0.0 node_modules/array-find-index/index.js