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

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

descending.js @upstream/1.2.0raw · history · blame

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

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