projects
/
squeep-mystery-box
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f2281b
)
fix best-version determination for versions >9
author
Justin Wind
<justin.wind+git@gmail.com>
Tue, 26 Nov 2024 18:14:21 +0000
(10:14 -0800)
committer
Justin Wind
<justin.wind+git@gmail.com>
Tue, 26 Nov 2024 18:14:21 +0000
(10:14 -0800)
lib/mystery-box.js
patch
|
blob
|
history
diff --git
a/lib/mystery-box.js
b/lib/mystery-box.js
index c7ddf187ea64eed920ac2c3a772310b83af4cbf5..080bc174dc35938cd19101d9eacc3637402d5827 100644
(file)
--- a/
lib/mystery-box.js
+++ b/
lib/mystery-box.js
@@
-98,7
+98,7
@@
class MysteryBox extends EventEmitter {
}, {});
// Default to highest
- this.bestVersion = Number(Object.keys(this.versionParameters).sort().pop());
+ this.bestVersion = Number(Object.keys(this.versionParameters).sort(
(a, b) => a - b
).pop());
if (Number.isNaN(this.bestVersion)) {
throw new MysteryBoxError('no supported versions available');
}