Files
new-api-hunter/web/src/helpers/log.js

7 lines
170 B
JavaScript

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