Socket
Socket
Sign inDemoInstall

arand

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    arand

Generate an almost random number of a given length


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 31 Mar 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc