mirror of
https://github.com/System-End/slack-end.git
synced 2026-04-19 22:05:10 +00:00
enhancement(lint): Fix lint errors for src/commands/binstuff.ts
Co-authored-by: NeonGamerBot-QK <saahilattud@gmail.com> Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
parent
690f8300d5
commit
60c1bea215
1 changed files with 3 additions and 2 deletions
|
|
@ -47,11 +47,12 @@ export default class UUID implements Command {
|
|||
e.elements
|
||||
.filter((e) => e.type == "text")
|
||||
.map((e) => e.text)
|
||||
.join("").trim(),
|
||||
.join("")
|
||||
.trim(),
|
||||
)
|
||||
.map((e) => e.trim())
|
||||
.filter(Boolean)
|
||||
.filter(c=>c.length > 1);
|
||||
.filter((c) => c.length > 1);
|
||||
for (const c of contents) {
|
||||
//@ts-ignore
|
||||
const contentToUpload = c;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue