Lius
2025-02-24 160a5fcfb6a8bf11236d7a00f6392b6135811b5a
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 []
}