hyingbo
昨天 1598fac6c5769b061dd02e937fbaf969b5e1c20d
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 []
}