zhuzhuanzhuan
2023-07-17 60d2e9bb9f9cd08fec6a5bf58dc698c9f204b716
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 []
}