Files
newapi-yx-diy/web/src/helpers/other.js
2025-04-04 17:37:27 +08:00

8 lines
170 B
JavaScript

export function getLogOther(otherStr) {
if (otherStr === undefined || otherStr === '') {
otherStr = '{}';
}
let other = JSON.parse(otherStr);
return other;
}