zhuzhuanzhuan
2023-10-30 becfd8257727daca9eb66f853c10dd1a2f5c8ee3
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 []
}