new-api/web/src/helpers/other.js
CalciumIon 6e92f1f2d1
Some checks failed
Publish Docker image (amd64) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (arm64) / Push Docker image to multiple registries (push) Has been cancelled
feat: 记录流模式首字时间 (close #323)
2024-06-26 18:04:49 +08:00

7 lines
184 B
JavaScript

export function getLogOther(otherStr) {
if (otherStr === undefined || otherStr === '') {
otherStr = '{}'
}
let other = JSON.parse(otherStr)
return other
}