mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-17 07:56:38 +08:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
export function getLogOther(otherStr) {
|
|
if (otherStr === undefined || otherStr === '') {
|
|
otherStr = '{}'
|
|
}
|
|
let other = JSON.parse(otherStr)
|
|
return other
|
|
} |