Sha256: 8b0e44dc34e593ec42643aeabe7a27c5c5be7804353aba704caa64d5dcea0c3b
Contents?: true
Size: 442 Bytes
Versions: 40
Compression:
Stored size: 442 Bytes
Contents
'use strict'; var define = require('define-properties'); var getPolyfill = require('./polyfill'); var shimUnscopables = require('es-shim-unscopables'); module.exports = function shimFindLastIndex() { var polyfill = getPolyfill(); define( Array.prototype, { findLastIndex: polyfill }, { findLastIndex: function () { return Array.prototype.findLastIndex !== polyfill; } } ); shimUnscopables('findLastIndex'); return polyfill; };
Version data entries
40 entries across 40 versions & 1 rubygems