You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
2 weeks ago | |
|---|---|---|
| .. | ||
| .github | 2 weeks ago | |
| test | 2 weeks ago | |
| .editorconfig | 2 weeks ago | |
| .eslintrc | 2 weeks ago | |
| .nycrc | 2 weeks ago | |
| CHANGELOG.md | 2 weeks ago | |
| LICENSE | 2 weeks ago | |
| README.md | 2 weeks ago | |
| auto.js | 2 weeks ago | |
| implementation.js | 2 weeks ago | |
| index.js | 2 weeks ago | |
| package.json | 2 weeks ago | |
| polyfill.js | 2 weeks ago | |
| shim.js | 2 weeks ago | |
README.md
array.prototype.findlast 
An ESnext spec-compliant Array.prototype.findLast shim/polyfill/replacement that works as far down as ES3.
This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the proposed spec.
Because Array.prototype.findLast depends on a receiver (the this value), the main export takes the array to operate on as the first argument.
Getting started
npm install --save array.prototype.findlast
Usage/Examples
var findLast = require('array.prototype.findlast');
var assert = require('assert');
var arr = [1, [2], [], 3, [[4]]];
var isNumber = function (x) { return typeof x === 'number' };
assert.deepEqual(findLast(arr, isNumber), 3);
var findLast = require('array.prototype.findlast');
var assert = require('assert');
/* when Array#findLast is not present */
delete Array.prototype.findLast;
var shimmed = findLast.shim();
assert.equal(shimmed, findLast.getPolyfill());
assert.deepEqual(arr.findLast(isNumber), findLast(arr, isNumber));
var findLast = require('array.prototype.findlast');
var assert = require('assert');
/* when Array#findLast is present */
var shimmed = findLast.shim();
assert.equal(shimmed, Array.prototype.findLast);
assert.deepEqual(arr.findLast(isNumber), findLast(arr, isNumber));
Tests
Simply clone the repo, npm install, and run npm test
