UNPKG

randomval

Version:
15 lines (11 loc) 211 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;