Even really large has limits

This commit is contained in:
Dragon Fire
2020-04-02 15:38:06 -04:00
parent 9dfef570a6
commit 89722d5bd4
+1 -1
View File
@@ -15,7 +15,7 @@ module.exports = class RomanCommand extends Command {
prompt: 'What number would you like to convert to roman numerals?',
type: 'integer',
min: 0,
max: Number.MAX_SAFE_INTEGER
max: 3999999
}
]
});