mirror of
https://github.com/HackPlan/node-iap.git
synced 2026-04-26 04:54:56 +08:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
var https = require('./index');
|
|
|
|
|
|
module.exports = function (url, options, cb) {
|
|
options = options || {};
|
|
|
|
// Set method to GET and call it
|
|
options.method = 'GET';
|
|
https.request(url, options, null, cb);
|
|
}; |