Codebase list node-d3-shape / lintian-fixes/main src / order / descending.js
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

descending.js @lintian-fixes/mainraw · history · blame

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

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