Skip to content

Instantly share code, notes, and snippets.

View 5nyper's full-sized avatar
☪️
Focusing

Snyper 5nyper

☪️
Focusing
View GitHub Profile
function createInsta(email, userid, cb) {
ensureExists(function (error) {
if (error) return cb(error);
getData(function (error, data) {
if (error) return cb(error);
return cb(null, data);
});
});