Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/forbeslindesay/seed-random

Generate random numbers with a seed, useful for reproducible tests
https://github.com/forbeslindesay/seed-random

Last synced: 11 days ago
JSON representation

Generate random numbers with a seed, useful for reproducible tests

Awesome Lists containing this project

README

        

# seed-random

Generate random numbers with a seed, useful for reproducible tests

[![build status](https://secure.travis-ci.org/ForbesLindesay/seed-random.png?branch=master)](http://travis-ci.org/ForbesLindesay/seed-random)
[![Dependency Status](https://img.shields.io/david/ForbesLindesay/seed-random.svg)](https://david-dm.org/ForbesLindesay/seed-random)
[![NPM version](https://img.shields.io/npm/v/seed-random.svg)](https://www.npmjs.com/package/seed-random)

## Installation

$ npm install seed-random

## API

```javascript
var assert = require('assert');
var seed = require('../');

var trueRandomA = seed();
var trueRandomB = seed();
assert(trueRandomA() != trueRandomB());

var fakeRandomA = seed('foo');
var fakeRandomB = seed('foo');
assert(fakeRandomA() == fakeRandomB());

var fakeRandomC = seed('foo', {entropy: true});
var fakeRandomD = seed('foo', {entropy: true});
assert(fakeRandomC() != fakeRandomD());

seed('foo', {global: true});//over-ride global Math.random
var numA = Math.random();
seed('foo', {global: true});
var numB = Math.random();
assert(numA == numB);//always true

seed.resetGlobal();//reset to default Math.random
```

## License

MIT