UNPKG

402 BJavaScriptView Raw
1/**
2 * Default exports
3 * @module default
4 */
5'use strict'
6
7const create = require('./create')
8const TheClient = require('./TheClient')
9
10const lib = create.bind(create)
11
12// `module.exports` overrides these `exports.*`, but still needs them for lebab (https://github.com/lebab/lebab)
13exports.TheClient = TheClient
14exports.create = create
15
16module.exports = Object.assign(lib, {
17 TheClient,
18 create,
19})