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.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 há 4 anos
..
.travis.yml [Version] V.3.8 há 4 anos
.zuul.yml [Version] V.3.8 há 4 anos
LICENSE [Version] V.3.8 há 4 anos
README.md [Version] V.3.8 há 4 anos
browser.js [Version] V.3.8 há 4 anos
index.js [Version] V.3.8 há 4 anos
package.json [Version] V.3.8 há 4 anos
test.js [Version] V.3.8 há 4 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
});