Sha256: 54f31dabc6c3f4fcb0f004ace75a7d243b4af697038b5569b2bb63e7af984e48
Contents?: true
Size: 477 Bytes
Versions: 69
Compression:
Stored size: 477 Bytes
Contents
define(function () { /** * Just a wrapper to Math.random. No methods inside mout/random should call * Math.random() directly so we can inject the pseudo-random number * generator if needed (ie. in case we need a seeded random or a better * algorithm than the native one) */ function random(){ return random.get(); } // we expose the method so it can be swapped if needed random.get = Math.random; return random; });
Version data entries
69 entries across 69 versions & 2 rubygems