UNPKG

@gulujs/toml

Version:

TOML parser and serializer

10 lines (9 loc) 232 B
const tableCommentMap = new WeakMap(); export class TableComment { static getComment(obj) { return tableCommentMap.get(obj); } static setComment(obj, comment) { tableCommentMap.set(obj, comment); } }