UNPKG

meli-sdk

Version:

Unofficial NodeJS SDK for the Mercadolibre API with Promises

19 lines (14 loc) 333 B
"use strict"; var api = require('./api'); function mix(_object, operations) { operations.forEach(function (property) { _object[property] = actions[property]; }); return _object; } var actions = { get: function(id, options){ return api.executeHttp('GET', this.baseUrl + id, {}, options); } }; exports.mix = mix;