Opal-Estate-Pro/node_modules/es5-ext/array/#/find/is-implemented.js

10 lines
209 B
JavaScript
Raw Normal View History

2019-09-13 06:27:52 +02:00
"use strict";
var fn = function (value) { return value > 3; };
module.exports = function () {
var arr = [1, 2, 3, 4, 5, 6];
if (typeof arr.find !== "function") return false;
return arr.find(fn) === 4;
};