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;
|
|
}
|