UNPKG

@data-ui/histogram

Version:

React + d3 library for creating histograms

11 lines (9 loc) 289 B
"use strict"; exports.__esModule = true; exports.default = caseInsensitiveSort; 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; }