3.0.0 • Published 2 years ago

gen-randint-array v3.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

Gen-RandInt-Array (For Client Side)

Contents

Description

Gen-RandInt-Array is a helper function to help you generate an array with a length of your choice and given the min and max range as ±negPos

Compatible with both client-side and server-side environments.

Usage

Client-side Only

Install the Gen-RandInt-Array package with NPM:

npm install gen-randint-array

In your package.json, set "type" to "module" to enable you import an ES Module.

"type" : "module"

Or you can rename the javascript file the module is to be used to have the .mjs extension:

That is from index.js to index.mjs

Now when that is done, in your application code, import the genRandIntArray() method and assign the return value to a variable:

import genRandIntArray from 'gen-randint-array';

const array = genRandIntArray(10, 10); // Returns an array of 10 random values ranging from -10 to 10

Requirements

The Gen-RandInt-Array helper function has zero dependencies.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

The Gen-RandInt-Array Project is released under the Apache License.

3.0.0

2 years ago

2.0.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago