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

@ -5,12 +5,12 @@ module.exports = (query, request) => {
captcha: query.captcha,
phone: query.phone,
oldcaptcha: query.oldcaptcha,
ctcode: query.ctcode || "86"
ctcode: query.ctcode || '86'
};
return request(
"POST",
'POST',
`https://music.163.com/api/user/replaceCellphone`,
data,
{ crypto: "weapi", cookie: query.cookie, proxy: query.proxy }
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
);
};