botv12/util/parseNBT.js
2024-10-23 22:59:54 -04:00

10 lines
279 B
JavaScript
Executable file

import { processNbtMessage } from 'prismarine-chat'
export default function parse (data) {
if (typeof data.type === 'string') {
return JSON.parse(processNbtMessage(data))
} else if (typeof data === 'string') {
return JSON.parse(data)
} else {
return data
}
}