# @yomguithereal/helpers

> Miscellaneous helper functions.

Latest version **1.1.1** (published 2020-10-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install @yomguithereal/helpers
pnpm add @yomguithereal/helpers
yarn add @yomguithereal/helpers
bun add @yomguithereal/helpers
```

## Health

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

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2020-10-12 |
| First published | 2018-04-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Guillaume Plique |
| Maintainers | yomguithereal |

## Links

- npm: https://www.npmjs.com/package/@yomguithereal/helpers
- Repository: https://github.com/Yomguithereal/helpers
- Homepage: https://github.com/Yomguithereal/helpers#readme
- Issues: https://github.com/Yomguithereal/helpers/issues
- npm.io page: https://npm.io/package/@yomguithereal/helpers

## Recent versions

- 1.1.1 (latest) — 2020-10-12
- 1.1.0 — 2020-10-09
- 1.0.1 — 2020-05-04
- 1.0.0 — 2018-04-17

## README

[![Build Status](https://travis-ci.org/Yomguithereal/helpers.svg)](https://travis-ci.org/Yomguithereal/helpers)

# Yomguithereal's helpers

Miscellaneous helper functions.

## Installation

```
npm install @yomguithereal/helpers
```

## Usage

* [#.extend](#extend)

## #.extend

Pushes multiple values to the given array.

It is faster than doing `array.push.apply(array, values)` and works by first mutating the array's length and then setting the new indices (benchmark proved it is faster than a loop of pushes).

```js
import extend from '@yomguithereal/helpers/extend';

const a = [1, 2, 3];
extend(a, [4, 5, 6]);

a
>>> [1, 2, 3, 4, 5, 6]
```

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