UNPKG
@gulujs/toml
Version:
latest (0.4.1)
0.4.1
0.3.1
0.3.0
TOML parser and serializer
github.com/gulujs/toml
gulujs/toml
@gulujs/toml
/
dist
/
table-object
/
table-comment.js
10 lines
(9 loc)
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
tableCommentMap =
new
WeakMap
();
export
class
TableComment
{
static
getComment
(
obj
) {
return
tableCommentMap.
get
(obj); }
static
setComment
(
obj, comment
) { tableCommentMap.
set
(obj, comment); } }