We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d41c2cf commit 1de4f38Copy full SHA for 1de4f38
create-or-update-files.js
@@ -1,4 +1,4 @@
1
-module.exports = function(octokit, opts) {
+module.exports = function (octokit, opts) {
2
return new Promise(async (resolve, reject) => {
3
// Up front validation
4
try {
index.js
@@ -1,5 +1,5 @@
const plugin = require("./create-or-update-files");
-module.exports = function(octokit) {
+module.exports = function (octokit) {
octokit.repos.createOrUpdateFiles = plugin.bind(null, octokit);
5
};
0 commit comments