# dxlibs-collection

> Extensión de clase Array

Latest version **1.0.0** (published 2019-02-11) · LICENSE license · 0 weekly downloads

## Install

```sh
npm install dxlibs-collection
pnpm add dxlibs-collection
yarn add dxlibs-collection
bun add dxlibs-collection
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2019-02-11 |
| First published | 2019-02-11 |
| Weekly downloads | 0 |
| License | LICENSE |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 9.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dx Team |
| Maintainers | dx-team |

## Links

- npm: https://www.npmjs.com/package/dxlibs-collection
- Repository: https://github.com/dx-team/collection
- Homepage: https://github.com/dx-team/collection#readme
- Issues: https://github.com/dx-team/collection/issues
- npm.io page: https://npm.io/package/dxlibs-collection

## Recent versions

- 1.0.0 (latest) — 2019-02-11

## README

# <sub><sup><sub><sup>dxLibs</sup></sub></sup></sub> collection <sub><sup><sub><sup><sub><sup>v1.0</sup></sub></sup></sub></sup></sub>

Extensión de clase Array.

Incorpora:
- Eventos asincrónicos

## Scripts
```powershell
npm run eslint
```
```powershell
npm run test-watch
```
```powershell
npm run test
```
```powershell
npm run sonar
```

## Instalación

### Como libreria
```powershell
npm install --save dxlibs-collection
```

## Modo de uso

```javascript
const Collection = require("dxlibs-collection");

const array = new Collection();
array.on('push', (items, length) => {
    console.log(`Items: ${items}`);
    console.log(`Length: ${length}`);
});

const nros = Collection.from([1, 2, 3, 4, 5, 6, 7, 8, 9]);

array.push(...nros);
```
---

---
_Source: https://npm.io/package/dxlibs-collection · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
