mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-06 22:44:32 +02:00
Uppercase
This commit is contained in:
@@ -23,13 +23,15 @@ module.exports = class MemeGenCommand extends Command {
|
||||
key: 'top',
|
||||
prompt: 'What should the something to believe in be?',
|
||||
type: 'string',
|
||||
max: 50
|
||||
max: 50,
|
||||
parse: top => top.toUpperCase()
|
||||
},
|
||||
{
|
||||
key: 'bottom',
|
||||
prompt: 'What should believing result in (e.g. sacrificing everything)?',
|
||||
type: 'string',
|
||||
max: 50
|
||||
max: 50,
|
||||
parse: bottom => bottom.toUpperCase()
|
||||
},
|
||||
{
|
||||
key: 'image',
|
||||
|
||||
Reference in New Issue
Block a user