$isPreviousExists
$isPreviousExists
will return either true or false
depending on if the previous track is exists.
Usage
$isPreviousExists[guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildID? | snowflake | guild ID | false |
Example(s)
This will return either true or false depending on if the previous track is exists
1client.command({2 name: 'ispreviousexists',3 code: `4 $isPreviousExists5 `6});
This will return either true or false depending on if the previous track is exists
1module.exports = [{2 name: "ispreviousexists",3 code: `4 $isPreviousExists5 `6}]