add eslint

This commit is contained in:
binaryify
2019-08-16 10:57:31 +08:00
parent 629533e674
commit b98d611989
143 changed files with 1166 additions and 1125 deletions

View File

@ -2,18 +2,18 @@
module.exports = (query, request) => {
const data = {
beforeTime: query.before || "-1",
beforeTime: query.before || '-1',
limit: query.limit || 30,
total: "true",
total: 'true',
uid: query.uid
};
return request(
"POST",
'POST',
`https://music.163.com/api/v1/user/comments/${query.uid}`,
data,
{
crypto: "weapi",
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy
}