UNPKG

@data-ui/histogram

Version:

React + d3 library for creating histograms

6 lines 222 B
export default function caseInsensitiveSort(a, b) { if (!a.toLowerCase || !b.toLowerCase) return a - b; if (a.toLowerCase() < b.toLowerCase()) return -1; if (a.toLowerCase() > b.toLowerCase()) return 1; return 0; }