UNPKG

bestbuy

Version:

High level node.js client for the Best Buy API.

10 lines (7 loc) 241 B
module.exports = warrantiesEndpoint; function warrantiesEndpoint (opts) { return function warranties (sku, callback) { var url = `${opts.url}/v1/products/${sku}/warranties.json`; return opts.apiService({ url }, callback); }; }