epa / web /src /helpers /log.js
luowuyin's picture
25:06:08 10:40:41 v0.8.1
d145f59
export function getLogOther(otherStr) {
if (otherStr === undefined || otherStr === '') {
otherStr = '{}';
}
let other = JSON.parse(otherStr);
return other;
}