randoms-js

1.0.0 • Public • Published

Build Status GitHub issues

Randoms.js

Javascript random objects generator

Getting Started

This module provides an easy to use to generate random data

Prerequisites

nodejs and terminal

Installing

npm install randoms-js

Using

 
let Random = require ('randoms-js')
 
 

Examples

 
var n1 = Random.nextInt(3,10);
var n2 = Random.nextDouble(5.2,10.4);
var bool = Random.nextBoolean();
var char = Random.nextChar();
var date = Random.nextDate(1995,2019).toUTCString();
var strUp = Random.nextString(5); //UPPERCASE
var strLow =Random.nextString(5,true); //lowercase
var studly = Random.nextString(5,false,true); //sTUdLyCApS
var intArray = Random.nextIntArray(5,10,10);
var doubleArray = Random.nextDoubleArray(5.7,10.2,10);
var charArrayUp = Random.nextCharArray(8);//UPPERCASE
var charArrayLow = Random.nextCharArray(8,true);//lowercase
var booleanArray = Random.nextBooleanArray(5);
var uniqueArray = Random.nextIntUniqueArray(2,20,18);
var dimension = Random.nextDimension(150,200);
var point = Random.nextPoint(40,100);
var rgb = Random.nextColorRgb();
var rgba = Random.nextColorRgba();
var element = Random.inArrayElement(["html","css","js","node"]);
var char1 = Random.inStringChar("BarışMeral");
 
 

Authors

  • Barış Meral

See also the list of contributors who participated in this project.

License

This project is licensed under the ISC License - see the LICENSE.md file for details

Package Sidebar

Install

npm i randoms-js

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

29 kB

Total Files

8

Last publish

Collaborators

  • barismeral