Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ie-array-filter-polyfill

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ie-array-filter-polyfill

Polyfill to provide array.filter on IE < 9

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

ie-array-filter-polyfill

Polyfill to provide array.filter on IE < 9

Installation

To install the stable version:

npm install ie-array-filter-polyfill --save

Use

import "ie-array-filter-polyfill";

Example

'use strict';
require('ie-array-filter-polyfill');

const people = [
    {
        name: 'Joe Due',
        age: 35
    },
    {
        name: 'Parker Manson',
        age: 75
    },
    {
        name: 'Junior Manson',
        age: 20
    },
    {
        name: 'Baby Due',
        age: 3
    },
];

const folks = people.filter(x => x.age > 1 && x.age <= 20 );

console.log('FOLKS: ', folks);
>node example.js

//RESULT
FOLKS:  [
	{ name: 'Junior Manson', age: 20 },
  { name: 'Baby Due', age: 3 }
]

Keywords

FAQs

Package last updated on 06 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc