UNPKG

269 BJavaScriptView Raw
1/**
2 * Create a TheClient instance
3 * @function create
4 * @param {...*} args
5 * @returns {TheClient}
6 */
7'use strict'
8
9const TheClient = require('./TheClient')
10
11/** @lends create */
12function create (...args) {
13 return new TheClient(...args)
14}
15
16module.exports = create