mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-25 20:38:38 +00:00
7 lines
170 B
JavaScript
7 lines
170 B
JavaScript
export function getLogOther(otherStr) {
|
|
if (otherStr === undefined || otherStr === '') {
|
|
otherStr = '{}';
|
|
}
|
|
let other = JSON.parse(otherStr);
|
|
return other;
|
|
}
|