This commit is contained in:
Daniel Odendahl Jr
2017-06-01 08:44:02 +00:00
parent 7802bb49cb
commit 14f85f94bd
129 changed files with 1915 additions and 1720 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ module.exports = class RepeatCommand extends Command {
key: 'text',
prompt: 'What text would you like to repeat over and over and over and over?',
type: 'string',
parse: text => text.repeat(2000).substr(0, 1999)
parse: (text) => text.repeat(2000).substr(0, 1999)
}
]
});