Coffeescript/Mithril Coding Style
- prefer
is
andisnt
over==
and!=
- prefer
unless ctrl.page()
toif ctrl.page() is undefined
- coffeescript vars should be pascalCase
- Loop through objects like this:
Object.entries(statsByRep).map ([rep, repStats]) =>