qushaowei
2023-10-28 345ca30ff9f623dc64e1af03fde456f63d18423a
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 []
}