Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

arand

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arand

Generate an almost random number of a given length

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

arand

Generate an almost random number of a given length

Travis npm version npm downloads npm license

Installation

npm install arand --save

What?

Almost random? What kind of sorcery is this?

arand(length, x) generates a random number of a given length where at least x of the digits are the same. This generates numbers that are easy to remember and type. arand() is perfect when generating codes used for two way authentication.

Usage

const arand = require('arand');

arand(3, 2);
//=> 808

arand(4, 2);
//=> 6768

arand(4, 2);
//=> 9993

arand(6, 4);
//=> 242227

License

MIT © Daniel Eckermann

FAQs

Package last updated on 31 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc