random-int-list
v1.0.3
Published
[](https://travis-ci.org/mugan86/random-int-ts-ci-co) [](https://c
Readme
Info about library
This library will serve to generate lists of random numbers with the specified length,...
Installation
npm install random-int-list --saveUsage
JS
var t = require('random-int-list');
console.log(t.randomIntList(5, 1, 5));Result => [ 1, 3, 5, 4, 2]
Typescript
import { randomIntList } from 'random-int-list');
console.log(randomIntList(5, 1, 5));Result => [ 1, 3, 5, 4, 2]
