UNPKG
clownface
Version:
latest (2.0.3)
unstable (0.3.0-rc6)
2.0.3
2.0.2
2.0.1
2.0.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
0.12.4
0.12.3
0.12.2
0.12.1
0.12.0
0.11.0
0.10.0
0.3.0
0.3.0-rc6
0.3.0-rc2
0.3.0-rc1
Simple but powerful graph traversing library
zazuko.github.io/clownface/
zazuko/clownface
clownface
/
lib
/
namespace.js
13 lines
(11 loc)
•
297 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
default
(
factory
)
=> {
const
xsd = factory.
namespace
(
'http://www.w3.org/2001/XMLSchema#'
)
const
rdf = factory.
namespace
(
'http://www.w3.org/1999/02/22-rdf-syntax-ns#'
)
return
{ first: rdf.first, nil: rdf.nil, rest: rdf.rest, langString: rdf.langString, xsd, } }