Lius
2025-04-10 5fadb9533dae67ad5e2327f97a4faa0f5068de62
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 []
}