Your IP : 216.73.217.154


Current Path : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/
Upload File :
Current File : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/toNumber.js

module.exports = function toNumber(num, precision) {
  if (num == null) return 0;
  var factor = Math.pow(10, isFinite(precision) ? precision : 0);
  return Math.round(num * factor) / factor;
};