var money = function (money) {
  var num=0;
  if(typeof money ==='number'){
    num = (money / 100).toFixed(2);
  }
  return num;
}
module.exports.money = money