Sha256: 084061296cfa6e7a5b9c4f262ad3da32bcf2024c96b56caca327be4779f621bc
Contents?: true
Size: 211 Bytes
Versions: 29
Compression:
Stored size: 211 Bytes
Contents
'use strict'; var fn = function (x) { return x > 3; }; module.exports = function () { var arr = [1, 2, 3, 4, 5, 6]; if (typeof arr.findIndex !== 'function') return false; return arr.findIndex(fn) === 3; };
Version data entries
29 entries across 19 versions & 7 rubygems