compare-by-depth.mjs 80 B

123
  1. const compareByDepth = (a, b) => a.depth - b.depth;
  2. export { compareByDepth };