UNPKG

@ocap/statedb-fs

Version:
17 lines (15 loc) 409 B
import base_default from "./base.mjs"; //#region src/table/token.ts /** * Token 表 * 扩展基础表,增加按符号查询功能 */ var TokenTable = class extends base_default { async existBySymbol(symbol) { if (!symbol) throw new Error("param symbol is required"); return this.collection.count({ symbol }) > 0; } }; var token_default = TokenTable; //#endregion export { token_default as default };