UNPKG

quasar

Version:

Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time

8 lines (6 loc) 149 B
export function sortDate(a, b) { return new Date(a) - new Date(b) } export function sortBoolean(a, b) { return a && !b ? -1 : !a && b ? 1 : 0 }