lyh
2025-04-02 fc2505f46bd0e45d5a4c2ad1b4ab9187c9e7bec3
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 []
}