benji.monster/node_modules/url-parse-lax/index.js

15 lines
268 B
JavaScript
Raw Normal View History

2020-01-03 20:48:09 +00:00
'use strict';
var url = require('url');
var prependHttp = require('prepend-http');
module.exports = function (x) {
var withProtocol = prependHttp(x);
var parsed = url.parse(withProtocol);
if (withProtocol !== x) {
parsed.protocol = null;
}
return parsed;
};