Lius
2024-09-26 5a9630b08ae608e2248c44271d8c08e140a4487b
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 []
}