UNPKG

nba

Version:

JavaScript client for the NBA's stats API

11 lines (8 loc) 239 B
var nba = require("../"); var endpoint = process.argv[2]; var props = process.argv.slice(3).reduce(function (o, s) { var split = s.split("="); o[split[0]] = split[1]; return o; }, {}); nba.stats[endpoint](props).then(console.log);