@ptkhanh94npm/sapiente-tempora-fugiat
v1.0.0
Published
[![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-im
Downloads
1
Maintainers
Keywords
Readme
@ptkhanh94npm/sapiente-tempora-fugiat
An ES5 spec-compliant Array.prototype.filter
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 spec.
Because Array.prototype.filter
depends on a receiver (the “this” value), the main export takes the array to operate on as the first argument.
Example
var filter = require('@ptkhanh94npm/sapiente-tempora-fugiat');
var assert = require('assert');
assert.deepEqual(filter([1, 2, 3], function (x) { return x >= 2; }), [2, 3]);
assert.deepEqual(filter([1, 2, 3], function (x) { return x <= 2; }), [1, 2]);
var filter = require('@ptkhanh94npm/sapiente-tempora-fugiat');
var assert = require('assert');
/* when Array#filter is not present */
delete Array.prototype.filter;
var shimmedFilter = filter.shim();
assert.equal(shimmedFilter, filter.getPolyfill());
var arr = [1, 2, 3];
var isOdd = function (x) { return x % 2 !== 0; };
assert.deepEqual(arr.filter(isOdd), filter(arr, isOdd));
var filter = require('@ptkhanh94npm/sapiente-tempora-fugiat');
var assert = require('assert');
/* when Array#filter is present */
var shimmedFilter = filter.shim();
assert.equal(shimmedFilter, Array.prototype.filter);
assert.deepEqual(arr.filter(isOdd), filter(arr, isOdd));
Tests
Simply clone the repo, npm install
, and run npm test