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

math-random-seed

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

math-random-seed

Similar to random-bytes-seed but returns a number between 0 and 1, similar to Math.random()

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.5K
increased by46.27%
Maintainers
1
Weekly downloads
 
Created
Source

math-random-seed

Similar to random-bytes-seed but returns a number between 0 and 1, similar to Math.random(). Useful for reproducible tests.

npm install math-random-seed

build status

Usage

var seed = require('math-random-seed')
var random = seed('a seed')

console.log(random())
console.log(random())

Running the above will print

0.5596440456713653
0.013160173085788306

API

var random = seed([seed])

Create a new random generator. If you do not provide a seed a random one is chosen for you.

var num = random()

Return a random number between 0 and 1.

random.seed

The seed originally used.

random.currentSeed

The seed for the next random operation.

License

MIT

FAQs

Package last updated on 01 Feb 2019

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