zhuzhuanzhuan
2023-09-01 ccc1f098e91573290474e7bf651064b46f446648
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 []
}