Sha256: 8ba63f2a206114ab4f8d3b8d707ce160a01cd77789678ebd5542d0b0f2da18fe
Contents?: true
Size: 359 Bytes
Versions: 8
Compression:
Stored size: 359 Bytes
Contents
'use strict'; var isPrototypeOf = require('../../internals/object-is-prototype-of'); var method = require('../array/virtual/find-last'); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.findLast; return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.findLast) ? method : own; };
Version data entries
8 entries across 4 versions & 1 rubygems