Prando Versions Save

Deterministic pseudo-random number generator for JavaScript and TypeScript

v6.0.1

3 years ago
  • Fix (build): removed useless code coverage and ESLint files from NPM package

v6.0.0

3 years ago
  • Fix: removed extraneous RNG recalculation calls in nextChar() and nextArrayItem() (breaking change) (thanks @fturmel) @fturmel
  • Change (tests): Raise jest coverage for statements and branches, and execute the whole test suite on both UMD and ES outputs (thanks @fturmel)
  • Change (build): updated all build dependencies to latest version, removed some unneeded ones
  • Change (tools): removed TSLint, added ESLint and Prettier
  • Change (style): added missing explicit additional types in functions, typos, linting (thanks @fturmel)
  • Change (docs): updated installation instructions with yarn

v5.1.2

4 years ago
  • Chore: updated all build dependencies to latest version

v5.1.1

4 years ago
  • Chore: updated all build dependencies to latest version

v5.1.0

4 years ago
  • Changed: cleaned up build process
  • Added: proper definition files
  • Fix: removed some useless files from the NPM package

v5.0.0

5 years ago
  • Fix: the UMD export can be imported again when using ts-node or a pure tsc project (thanks @miso440 and @jcowman2)
  • Tests: properly test ES6 JavaScript code using Babel
  • Tests: also test uniqueness of result set when using a string-generated seed
  • Chore: updated Rollup to latest version

v4.0.0

5 years ago
  • Invalid seeds (0, "") don't break the generator anymore (thanks @burdakovd)
  • Random (default) seed uses a number in the valid seed range, and is therefore less predictable
  • Similar string seeds produce more unique seeds (breaking change) (thanks @burdakovd)
  • Expanded tests to detect invalid seeds and string seed similarity effect

v3.1.0

5 years ago
  • Updated all dev dependencies to their latest versions, to get rid of a "low severity security vulnerability detected in randomatic < 3.0.0". This did not affect the release version of Prando, since it has no dependencies of its own.

v3.0.3

6 years ago
  • Fixed TypeScript definitions

v3.0.2

6 years ago
  • Updated all dev dependencies to their latest versions
  • Some TypeScript cleanup