Socket
Socket
Sign inDemoInstall

@dvlden/alea

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dvlden/alea

Pseudorandom number generator based on Alea algorithm.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
10.7 kB
Created
Weekly downloads
 

Readme

Source

alea

GitHub package.json version npm bundle size (scoped)

Alea

Pseudorandom number generator created by Johannes Baagøe, but rewritten a bit differently. If you ever needed a seedable random numbers, this is one way to achive that with a simple ES generator function.

Check test cases if you are still wondering what it does.


Installation

Use your favourite package manager... In my case that's pnpm.

pnpm i @dvlden/alea

Usage

Browser

import { alea } from '@dvlden/alea'

const random = alea(123) // where `123` is your seed

console.log(random.next().value) // 0.1198014235123992

Node

const { alea } = require('@dvlden/alea')

const random = alea(123) // where `123` is your seed

console.log(random.next().value) // 0.1198014235123992

Iterations

Since this PRNG has been written as generator, it will yield a new value whenever you need it. Do any loop that you want, just make sure to constraint it as a generator will do it infinitely otherwise.

import { alea } from '@dvlden/alea'

const random = alea(123)

for (let i = 0; i < 10; i++) {
  console.log(random.next().value)
}

Keywords

FAQs

Last updated on 24 Jan 2023

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