log.js 170 B

1234567
  1. export function getLogOther(otherStr) {
  2. if (otherStr === undefined || otherStr === '') {
  3. otherStr = '{}';
  4. }
  5. let other = JSON.parse(otherStr);
  6. return other;
  7. }