1.0.0 • Published 10 years ago

ones v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
10 years ago

ones

A simple tool to create an array with only 1's

Installation

To install, run

$ npm install --save ones

Usage

To use, require it first by

var ones = require("ones");

Then input the array length that you want

ones() // []
ones(0) // []
ones(1) // [1]
ones(5) // [1, 1, 1, 1, 1]

Versions

1.0.0 First version