Codebase list node-d3-shape / upstream/latest src / order / descending.js
upstream/latest

Tree @upstream/latest (Download .tar.gz)

descending.js @upstream/latestraw · history · blame

1
2
3
4
5
import ascending from "./ascending.js";

export default function(series) {
  return ascending(series).reverse();
}