Skip to content

Instantly share code, notes, and snippets.

View kosirm's full-sized avatar
🏠
Working from home

Milan Košir kosirm

🏠
Working from home
View GitHub Profile
@staltz
staltz / introrx.md
Last active June 2, 2024 11:03
The introduction to Reactive Programming you've been missing
//Uses the https://github.com/github-tools/github library under the hood and exposes it as `gh` property
function GithubAPI(auth) {
let repo;
let filesToCommit = [];
let currentBranch = {};
let newCommit = {};
//the underlying library for making requests
let gh = new GitHub(auth);