Skip to content

Instantly share code, notes, and snippets.

@bttmly
Created January 16, 2015 19:26
Show Gist options
  • Save bttmly/c3a1c20fbfee04ddeb9c to your computer and use it in GitHub Desktop.
Save bttmly/c3a1c20fbfee04ddeb9c to your computer and use it in GitHub Desktop.
var Bluebird = require("bluebird");
var nba = require("nba");
Object.keys(nba.api).forEach(function (method) {
var original = nba.api[method];
nba.api[method] = Promise.promisify(original);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment