Monday, 25 January 2016

Expressjs Module for Returning Random 6 digit number


var express = require('express');

module.exports = {
  getToken: function() {
    return Math.round(Math.random()*100000);
  },
};

No comments:

Post a Comment