arr-filter

WebJar for arr-filter

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

arr-filter
Последняя версия

Последняя версия

1.1.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

arr-filter
WebJar for arr-filter
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/jonschlinkert/arr-filter

Скачать arr-filter

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/arr-filter/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>arr-filter</artifactId>
    <version>1.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/arr-filter/
implementation 'org.webjars.npm:arr-filter:1.1.2'
// https://jarcasting.com/artifacts/org.webjars.npm/arr-filter/
implementation ("org.webjars.npm:arr-filter:1.1.2")
'org.webjars.npm:arr-filter:jar:1.1.2'
<dependency org="org.webjars.npm" name="arr-filter" rev="1.1.2">
  <artifact name="arr-filter" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='arr-filter', version='1.1.2')
)
libraryDependencies += "org.webjars.npm" % "arr-filter" % "1.1.2"
[org.webjars.npm/arr-filter "1.1.2"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : make-iterator jar [1.0.0,2)

Модули Проекта

Данный проект не имеет модулей.

arr-filter NPM version NPM monthly downloads NPM total downloads Linux Build Status

Faster alternative to javascript's native filter method.

Install

Install with npm:

$ npm install --save arr-filter

Usage

var filter = require('arr-filter');

filter(['a', {a: 'b'}, 1, 'b', 2, {c: 'd'}, 'c'], function (ele) {
  return typeof ele === 'string';
});
//=> ['a', 'b', 'c']

Why another array filter?

array-filter is pretty popular, but it's tuned to be used in older browsers and it falls back on native .filter() when available, which is much slower. See jsperf results. The functions used in the benchmarks are the top performers from a dozen or so other functions.

About

Related projects

  • arr-map: Faster, node.js focused alternative to JavaScript's native array map. | homepage
  • array-each: Loop over each item in an array and call the given function on every element. | homepage
  • collection-map: Returns an array of mapped values from an array or object. | homepage

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.4.2, on February 26, 2017.

Версии библиотеки

Версия
1.1.2
1.1.0