chore(deps-dev): bump prettier from 1.19.1 to 2.0.2

This commit is contained in:
DIYgod
2020-04-02 21:21:46 +08:00
parent 27e4a7c151
commit 0e7b14e718
471 changed files with 1237 additions and 4457 deletions

View File

@@ -10,16 +10,11 @@ module.exports = async (ctx) => {
const out = $('div.am-comment-main > div > p')
.slice(0, 10)
.map(function() {
.map(function () {
const info = {
title:
$(this)
.find('strong')
.text() || $(this).text(),
title: $(this).find('strong').text() || $(this).text(),
description: $(this).html(),
link: $(this)
.find('a')
.attr('href'),
link: $(this).find('a').attr('href'),
};
return info;
})