style: auto format

This commit is contained in:
github-actions[bot]
2024-05-25 15:51:43 +00:00
parent 8c61d0bba5
commit 690b22f34a
+1 -1
View File
@@ -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) {