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