mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Fix lint.
This commit is contained in:
+2
-2
@@ -33,7 +33,7 @@ module.exports = class EmojiArgumentType extends ArgumentType {
|
||||
if (exactEmojis.size === 1) return exactEmojis.first();
|
||||
return null;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function nameFilterExact(search) {
|
||||
return thing => thing.name.toLowerCase() === search;
|
||||
@@ -41,4 +41,4 @@ function nameFilterExact(search) {
|
||||
|
||||
function nameFilterInexact(search) {
|
||||
return thing => thing.name.toLowerCase().includes(search);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user