function compare()

in docs-content/examples-source/material/sort/sort-overview/sort-overview-example.ts [62:64]


function compare(a: number | string, b: number | string, isAsc: boolean) {
  return (a < b ? -1 : 1) * (isAsc ? 1 : -1);
}