Files
labeler/node_modules/@octokit/rest/lib/factory.js
T

11 lines
273 B
JavaScript
Raw Normal View History

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