UNPKG

514 BSource Map (JSON)View Raw
1{"version":3,"sources":["../src/Entity.ts"],"names":["EMPTY","entitySequence","createEntity"],"mappings":";;;;;;;AAEO,IAAMA,KAAK,GAAG,CAAC,CAAf;;AAEP,IAAIC,cAAc,GAAG,CAArB;AAEA;;;;;AAIO,SAASC,YAAT,GAAwB;AAC7B,SAAOD,cAAc,EAArB;AACD","sourcesContent":["export type Entity = number;\n\nexport const EMPTY = -1;\n\nlet entitySequence = 1;\n\n/**\n * 类似关系型数据库的主键\n * TODO: 自动生成,考虑序列化\n */\nexport function createEntity() {\n return entitySequence++;\n}\n"],"file":"Entity.js"}
\No newline at end of file