array-flat-polyfill

WebJar for array-flat-polyfill

Лицензия

Лицензия

Группа

Группа

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

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

array-flat-polyfill
Последняя версия

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

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

array-flat-polyfill
WebJar for array-flat-polyfill
Ссылка на сайт

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

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

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

https://github.com/jonathantneal/array-flat-polyfill

Скачать array-flat-polyfill

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

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

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

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

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

Array Flat Polyfill

NPM Version Build Status Support Chat

Array Flat Polyfill is a polyfill for Array.prototype.flat and Array.prototype.flatMap, following the TC39 Proposal.

npm install array-flat-polyfill --save

The flat() method creates a new array with all sub-array elements concatenated into it recursively up to the specified depth.

[1, 2, [3, 4, [5, 6]]].flat(2) // [1, 2, 3, 4, 5, 6]

The flatMap() method maps each element using a mapping function, then flattens the result into a new array.

[1, 2, 3, 4].flatMap(x => [x * 2]); // [2, 4, 6, 8]

The script is 261 bytes when minified and gzipped. It works in all browsers, going as far back as Internet Explorer 9.

Usage

For immediate usage, add this script to your document:

<script src="https://unpkg.com/array-flat-polyfill"></script>

For Node usage, add Array Flat Polyfill to your project:

npm install array-flat-polyfill

Include Array Flat Polyfill in your JS:

import 'array-flat-polyfill';

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

Версия
1.0.1