qushaowei
2023-11-22 3dd1c81c84d78a30fff6468ccb05f979f2d50966
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 []
}