Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit bdbff63

Browse files
committed
Expose Client as top-level export
1 parent ccfd821 commit bdbff63

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/client/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ function xor() {
3636
///--- Exports
3737

3838
module.exports = {
39+
Client: Client,
3940
createClient: function createClient(options) {
4041
if (typeof (options) !== 'object')
4142
throw new TypeError('options (object) required');

lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ var url = require('./url');
2121
///--- API
2222

2323
module.exports = {
24+
Client: client.Client,
2425
createClient: client.createClient,
2526

2627
Server: Server,

0 commit comments

Comments
 (0)