Update to latest

This commit is contained in:
Daniel Odendahl Jr
2017-11-02 22:42:12 +00:00
parent 96c762a552
commit 7560246f26
37 changed files with 89 additions and 120 deletions
+1 -4
View File
@@ -14,10 +14,7 @@ module.exports = class MockingCommand extends Command {
key: 'text',
prompt: 'WHaT tEXt WoUlD yOu LiKE to COnvErt?',
type: 'string',
validate: text => {
if (text.length < 1950) return true;
return 'Invalid text, please keep the text under 1950 characters.';
},
max: 1950,
parse: text => text.toLowerCase().split('')
}
]