Files

11 lines
273 B
JavaScript
Raw Permalink Normal View History

module.exports = factory;
2019-08-06 17:37:58 -04:00
const Octokit = require("./constructor");
const registerPlugin = require("./register-plugin");
2019-08-06 17:37:58 -04:00
function factory(plugins) {
const Api = Octokit.bind(null, plugins || []);
Api.plugin = registerPlugin.bind(null, plugins || []);
return Api;
2019-08-06 17:37:58 -04:00
}