Lius
2024-01-06 2145108a5bf0c721fea728e0a4936cb7007a92a2
1
2
3
4
5
6
7
8
export function actionToObject(json) {
  try {
    return JSON.parse(json)
  } catch (e) {
    console.log('err', e.message)
  }
  return []
}