Your IP : 216.73.216.79


Current Path : /var/www/html/eform/npm/Ladda/node_modules/https-browserify/
Upload File :
Current File : /var/www/html/eform/npm/Ladda/node_modules/https-browserify/index.js

var http = require('http');

var https = module.exports;

for (var key in http) {
    if (http.hasOwnProperty(key)) https[key] = http[key];
};

https.request = function (params, cb) {
    if (!params) params = {};
    params.scheme = 'https';
    params.protocol = 'https:';
    return http.request.call(this, params, cb);
}