UNPKG
@rdf-esm/data-model
Version:
latest (0.5.4)
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
A basic implementation of the RDFJS Data Model
github.com/rdf-esm/data-model
rdf-esm/data-model
@rdf-esm/data-model
/
lib
/
default-graph.js
14 lines
(11 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
class
DefaultGraph
{
get
value
()
{
return
''
}
equals
(other) {
return
!!other && other.termType ===
this
.termType }
get
termType
()
{
return
'DefaultGraph'
} }