diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 13:56:54 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 13:56:54 -0300 |
commit | 84a98b3b71d5524baf7b5e9038909ad501203115 (patch) | |
tree | e9702cbdefd19ac7259e4b9d918709fcd62fcfd0 /src/data/composite.js | |
parent | 74bd087bb01c759b1bf38c9bc445e42b43684276 (diff) |
toReversed, toSorted miscellany
Diffstat (limited to 'src/data/composite.js')
-rw-r--r-- | src/data/composite.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/composite.js b/src/data/composite.js index f31c4069..e5873cf5 100644 --- a/src/data/composite.js +++ b/src/data/composite.js @@ -1416,7 +1416,7 @@ export function compositeFrom(description) { export function displayCompositeCacheAnalysis() { const showTimes = (cache, key) => { - const times = cache.times[key].slice().sort(); + const times = cache.times[key].toSorted(); const all = times; const worst10pc = times.slice(-times.length / 10); |