UNPKG

node-smsc

Version:

Convenient wrapper of http/https smsc api.

21 lines (12 loc) 330 B
module.exports = function (apiCall) { return function (query, options, cb) { options = options || {} query = query || {} query.fmt = 3 options.path = 'get_mnp.php' if (!query.date) { options.stream = true } return apiCall(query, options, cb) } }