style: auto format

This commit is contained in:
GitHub Action 2020-08-22 20:43:05 +00:00
parent 0a8ed6c2d1
commit fc71d9e7af
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ module.exports = async (ctx) => {
const response = await got.get(link);
const $ = cheerio.load(response.data);
const channel_name = $('h2.profile__heading--name').text().trim().split(" ")[0];
const channel_name = $('h2.profile__heading--name').text().trim().split(' ')[0];
const list = $('ul.profile-mine__content li')
.slice(0, 10)
@ -87,4 +87,4 @@ module.exports = async (ctx) => {
link: link,
item: out,
};
};
};