The page you requested is still being published. It should be available soon.


The es6 functions are such a nice improvement.

if ( incomeCategoryIds.includes(receipt.category_id) ) { … }

is so much nicer than …

if ( incomeCategoryIds.indexOf(receipt.category_id) != -1 ) { … }