Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function getRandomInt(max) {
  2. return Math.floor(Math.random() * Math.floor(max))
  3. }
  4.  
  5. module.exports = {
  6. increase: function(value) {
  7. return value + 1
  8. },
  9. random: function() {
  10. return getRandomInt(100)
  11. },
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement