UNPKG

nba

Version:

JavaScript client for the NBA's stats API

9 lines 181 B
module.exports = function blank (obj) { const out = Object.create(null); if (obj) { Object.keys(obj).forEach(key => { out[key] = obj[key]; }); } return out; };