PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
bower-config
/
node_modules
/
mout
/
time
/** * Get current time in miliseconds */ function now(){ // yes, we defer the work to another function to allow mocking it // during the tests return now.get(); } now.get = (typeof Date.now === 'function')? Date.now : function(){ return +(new Date()); }; module.exports = now;
[+]
..
[-] now.js
[edit]
[-] convert.js
[edit]
[-] parseMs.js
[edit]
[-] toTimeString.js
[edit]