UNPKG
dc-mar
Version:
latest (0.6.1)
0.6.1
0.6.0
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
0.3.0
0.2.0
0.1.2
0.1.1
Node module for DC Master Address Repository API
github.com/kcivey/dc-mar-js
kcivey/dc-mar-js
dc-mar
/
index.js
11 lines
(9 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
Address
=
require
(
'./lib/address'
);
const
Client
=
require
(
'./lib/client'
);
module
.
exports
= {
Address
,
Client
,
createClient
(
options
) {
return
new
Client
(options); }, };