/var/www/greso.tech/server/nsm/node_modules/validator/es/lib
Edit: /var/www/greso.tech/server/nsm/node_modules/validator/es/lib/toFloat.js (132B)
import isFloat from './isFloat';
export default function toFloat(str) {
if (!isFloat(str)) return NaN;
return parseFloat(str);
}