_f.js 150 Bytes
Newer Older
Leon's avatar
Leon committed
1 2 3 4 5 6 7 8
var _ = require("lodash");

function _f(n) {
    return _.floor(_.toNumber(n), 3).toFixed(3).replace(/0$/, '');
}

print(_f(3.4056))
print(_f(3.4000))