# set-addall

> Add specified values to set.

Latest version **0.1.3** (published 2018-09-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install set-addall
pnpm add set-addall
yarn add set-addall
bun add set-addall
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2018-09-23 |
| First published | 2018-02-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | wolfram77@gmail.com |
| Maintainers | wolfram77 |
| Keywords | set, add, all |

## Links

- npm: https://www.npmjs.com/package/set-addall
- npm.io page: https://npm.io/package/set-addall

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2018-09-23
- 0.1.2 — 2018-02-05
- 0.1.1 — 2018-02-03
- 0.1.0 — 2018-02-03
- 0.0.2 — 2018-02-03
- 0.0.1 — 2018-02-03

## README

# set-addall

> NOTE: [set-addall](https://www.npmjs.com/package/set-addall) was renamed to [@extra-set/add-all](https://www.npmjs.com/package/@extra-set/add-all).
[![NPM](https://nodei.co/npm/set-addall.png)](https://nodei.co/npm/set-addall/)

Add specified values to [set].

```javascript
const addAll = require('set-addall');
// addAll(<set>, <values>, [begin=0], [end])

addAll(new Set('wait'), new Set('ed'));
// Set {'w', 'a', 'i', 't', 'e', 'd'}
addAll(new Set('wait'), 'ing');
// Set {'w', 'a', 'i', 't', 'n', 'g'}
addAll(new Set('wait'), 'ing', 1);
// Set {'w', 'a', 'i', 't', 'n', 'g'}
addAll(new Set('wait'), 'ing', 1, 2);
// Set {'w', 'a', 'i', 't', 'n'}
```


[set]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set

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