fix best-version determination for versions >9
authorJustin Wind <justin.wind+git@gmail.com>
Tue, 26 Nov 2024 18:14:21 +0000 (10:14 -0800)
committerJustin Wind <justin.wind+git@gmail.com>
Tue, 26 Nov 2024 18:14:21 +0000 (10:14 -0800)
lib/mystery-box.js

index c7ddf187ea64eed920ac2c3a772310b83af4cbf5..080bc174dc35938cd19101d9eacc3637402d5827 100644 (file)
@@ -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');
     }