mum-utils
v0.0.0
Published
a collection of useful utilities for mum bots
Downloads
2
Readme
mum-utils
usage
var u = require('mum-utils');
random = u.randomInt(100, 50); // a random integer between 50 and 100
utilities
u.randomInt(max, [min])
finds a random integer between from min
to max-1
, the default minimum is 0
.