mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-01 14:57:14 +08:00
style: auto format
This commit is contained in:
@@ -42,7 +42,7 @@ const decrypt_douyin_detail_xyz = (nonce) => {
|
||||
return md5(str);
|
||||
};
|
||||
|
||||
const flatten = (arr) => arr.reduce((acc, val) => Array.isArray(val) ? [...acc, ...(flatten(val))] : [...acc, val], []);
|
||||
const flatten = (arr) => arr.reduce((acc, val) => (Array.isArray(val) ? [...acc, ...flatten(val)] : [...acc, val]), []);
|
||||
|
||||
function shouldUpdateCookie(forcedUpdate = false) {
|
||||
if (forcedUpdate) {
|
||||
|
||||
Reference in New Issue
Block a user