nbt_parser 用于解析Deno中nbt数据的简单模块。 基于 如何使用 import { parse , simplify } from 'https://raw.githubusercontent.com/mcbobby123/nbt_parser/master/index.ts' ; const data : UInt8Array ; // Some NBT data represented as a UInt8Array const nbt = parse ( data ) ; // To remove type tags use const simpleNbt = simplify ( nbt ) ; 打字 import { Tag , Types , Create , Constant , SimplifiedType } from 'https://raw.gith