Lius
2024-01-27 791db9676de3fac540b3a508d222a77a83f11d29
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 []
}