2024-10-22 23:11:33 -04:00
|
|
|
import { processNbtMessage } from 'prismarine-chat'
|
2024-10-23 22:59:54 -04:00
|
|
|
export default function parse (data) {
|
2024-10-22 23:11:33 -04:00
|
|
|
if (typeof data.type === 'string') {
|
|
|
|
return JSON.parse(processNbtMessage(data))
|
|
|
|
} else if (typeof data === 'string') {
|
|
|
|
return JSON.parse(data)
|
|
|
|
} else {
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
}
|