zhaowei
2025-03-14 81e1bdcf2953c8f91b343c7e59fc40f5a016594d
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 []
}