| Current Path : /var/www/sitesecurity.bitkit.dk/httpdocs/node_modules/d3-array/src/ |
| Current File : /var/www/sitesecurity.bitkit.dk/httpdocs/node_modules/d3-array/src/ascending.js |
export default function ascending(a, b) {
return a == null || b == null ? NaN : a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
}