Auto pushed

This commit is contained in:
nannal
2020-01-25 14:05:59 +02:00
commit 7a954b3253
165 changed files with 26032 additions and 0 deletions

8
node_modules/brorand/test/api-test.js generated vendored Executable file
View File

@@ -0,0 +1,8 @@
var brorand = require('../');
var assert = require('assert');
describe('Brorand', function() {
it('should generate random numbers', function() {
assert.equal(brorand(100).length, 100);
});
});