lius
2023-08-14 6116a6792c673800141a65d924be0aa2b88c2f3d
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 []
}