Lius
2025-08-21 04c5b1b9b20f22cdaae46f123d3180f6cff19f2c
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 []
}