lius
2023-08-15 b82cf6ea881a2d6b8f76f38bb0cef35c69bf5da5
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 []
}