mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-09 18:39:35 +02:00
Fix lint
This commit is contained in:
@@ -3,10 +3,6 @@ const request = require('node-superfetch');
|
||||
const Ability = require('./Ability');
|
||||
|
||||
module.exports = class AbilityStore extends Collection {
|
||||
constructor(options) {
|
||||
super(options);
|
||||
}
|
||||
|
||||
async fetch(query) {
|
||||
if (this.has(query)) return this.get(query);
|
||||
query = this.makeSlug(query.toString());
|
||||
|
||||
@@ -3,10 +3,6 @@ const request = require('node-superfetch');
|
||||
const Move = require('./Move');
|
||||
|
||||
module.exports = class MoveStore extends Collection {
|
||||
constructor(options) {
|
||||
super(options);
|
||||
}
|
||||
|
||||
async fetch(query) {
|
||||
if (this.has(query)) return this.get(query);
|
||||
query = this.makeSlug(query.toString());
|
||||
|
||||
Reference in New Issue
Block a user