
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
knuth-shuffle
Advanced tools
The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js
'nuf said.
As Microsoft learned the hard way (see article below), function random() { return 0.5 - Math.random() } turns out to be no-so-random at all.
The fisher-yates shuffle is an algorithm so simple that even IEEE floating point math can't screw it up!
I put this on npm as knuth-shuffle because fisher-yates-shuffle
was just too long of a name and shuffle was already taken.
<script src="https://raw.github.com/coolaj86/knuth-shuffle/master/index.js"></script>
(function () {
'use strict';
var a = [2,11,37,42];
var b;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = window.knuthShuffle(a.slice(0));
console.log(b);
}());
Decentralized Install
npm install --save git+https://git.coolaj86.com/coolaj86/knuth-shuffle.js.git#v1.0
Centralized Install
npm install --save knuth-shuffle@1.0
(function () {
'use strict';
var shuffle = require('knuth-shuffle').knuthShuffle;
var a = [2,11,37,42];
var b;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = shuffle(a.slice(0));
console.log(b);
}());
FAQs
The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js
The npm package knuth-shuffle receives a total of 15,182 weekly downloads. As such, knuth-shuffle popularity was classified as popular.
We found that knuth-shuffle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
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.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.