UNPKG
care-js
Version:
latest (3.3.4)
3.3.4
Standard library
care-js
/
es
/
instance
/
find.js
9 lines
(6 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
find =
require
(
'../array/virtual/find'
);
var
ArrayPrototype
=
Array
.
prototype
;
module
.
exports
=
function
(
it
) {
var
own = it.
find
;
return
it ===
ArrayPrototype
|| (it
instanceof
Array
&& own ===
ArrayPrototype
.
find
) ? find : own; };