style: auto format
This commit is contained in:
parent
8c61d0bba5
commit
690b22f34a
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue