UNPKG

randomval

Version:
16 lines (12 loc) 271 B
/** * Random val context. * @function random * @returns {number} Random number between 0 and 1. */ 'use strict'; /** @lends random */ function random() { return Math.random(); } module.exports = random; //# sourceMappingURL=data:application/json;base64,bnVsbA==