teobais / math.js

A simple math library written in Javascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Consider the possibility of moving unit converters' hard-coded constants to constants.js

teobais opened this issue · comments

I don't know how much it is to my liking, keeping such code inside the main js file:

   milesToMeters: function(n) {
        return 1609.344 * n;
    },