PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
bower-config
/
node_modules
/
mout
/
src
/
time
define(['../math/countSteps'], function(countSteps){ /** * Parse timestamp into an object. */ function parseMs(ms){ return { milliseconds : countSteps(ms, 1, 1000), seconds : countSteps(ms, 1000, 60), minutes : countSteps(ms, 60000, 60), hours : countSteps(ms, 3600000, 24), days : countSteps(ms, 86400000) }; } return parseMs; });
[+]
..
[-] now.js
[edit]
[-] convert.js
[edit]
[-] parseMs.js
[edit]
[-] toTimeString.js
[edit]