Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit há 3 anos
..
.travis.yml First Commit há 3 anos
.zuul.yml First Commit há 3 anos
LICENSE First Commit há 3 anos
README.md First Commit há 3 anos
browser.js First Commit há 3 anos
index.js First Commit há 3 anos
package.json First Commit há 3 anos
test.js First Commit há 3 anos

README.md

randomfill

Version

randomfill from node that works in the browser. In node you just get crypto.randomBytes, but in the browser it uses .crypto/msCrypto.getRandomValues

var randomFill = require('randomfill');
var buf
randomFill.randomFillSync(16);//get 16 random bytes
randomFill.randomFill(16, function (err, resp) {
  // resp is 16 random bytes
});