# array-fill-with-number

> Array fill with number

Latest version **0.1.0** (published 2017-05-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install array-fill-with-number
pnpm add array-fill-with-number
yarn add array-fill-with-number
bun add array-fill-with-number
```

## 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.0 |
| Published | 2017-05-08 |
| First published | 2017-05-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | ragingwind |
| Maintainers | ragingwind |

## Links

- npm: https://www.npmjs.com/package/array-fill-with-number
- Repository: https://github.com/ragingwind/array-fill-with-number
- Homepage: https://github.com/ragingwind/array-fill-with-number#readme
- Issues: https://github.com/ragingwind/array-fill-with-number/issues
- npm.io page: https://npm.io/package/array-fill-with-number

## Recent versions

- 0.1.0 (latest) — 2017-05-08
- 0.0.1 — 2017-05-08

## README

# array-fill-with-number [![Build Status](https://travis-ci.org/ragingwind/array-fill-with-number.svg?branch=master)](https://travis-ci.org/ragingwind/array-fill-with-number)

> Array fill with number


## Install

```sh
$ yarn add array-fill-with-number
```

or

```sh
$ npm install --save array-fill-with-number
```

## Usage

```js
const arrayFillWithNumber = require('array-fill-with-number');

arrayFillWithNumber(10);
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

arrayFillWithNumber(10, 1);
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
```

## API

### arrayFillWithNumber(lenght, [start])

#### length

Type: `number`<br>

Length of number

#### start

Type: `number`<br>
Default: 0

Start of number

## License

MIT © [Jimmy Moon](http://ragingwind.me)

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