PATH:
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
moment
/
src
/
lib
/
units
var priorities = {}; export function addUnitPriority(unit, priority) { priorities[unit] = priority; } export function getPrioritizedUnits(unitsObj) { var units = []; for (var u in unitsObj) { units.push({unit: u, priority: priorities[u]}); } units.sort(function (a, b) { return a.priority - b.priority; }); return units; }
[-] month.js
[edit]
[-] minute.js
[edit]
[-] week.js
[edit]
[-] timestamp.js
[edit]
[-] quarter.js
[edit]
[-] second.js
[edit]
[+]
..
[-] offset.js
[edit]
[-] week-year.js
[edit]
[-] day-of-month.js
[edit]
[-] priorities.js
[edit]
[-] timezone.js
[edit]
[-] year.js
[edit]
[-] week-calendar-utils.js
[edit]
[-] day-of-week.js
[edit]
[-] millisecond.js
[edit]
[-] day-of-year.js
[edit]
[-] aliases.js
[edit]
[-] hour.js
[edit]
[-] constants.js
[edit]
[-] units.js
[edit]