| Current Path : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/ |
| 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;
};