UNPKG

quasar

Version:

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

10 lines (8 loc) 165 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) }