Files
income_payments_client/src/utils/permissions.js
T
2021-08-23 09:57:23 +08:00

8 lines
142 B
JavaScript

export function actionToObject(json) {
try {
return JSON.parse(json)
} catch (e) {
console.log('err', e.message)
}
return []
}