add node_modules

This commit is contained in:
fxy060608
2018-11-18 16:29:14 +08:00
parent 39855795ec
commit 44216319cb
200 changed files with 25415 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
'use strict';
module.exports = function (url) {
if (typeof url !== 'string') {
throw new TypeError('Expected a string, got ' + typeof url);
}
url = url.trim();
if (/^\.*\/|^(?!localhost)\w+:/.test(url)) {
return url;
}
return url.replace(/^(?!(?:\w+:)?\/\/)/, 'http://');
};