Files
2018-10-27 03:51:47 -05:00

9 lines
172 B
JavaScript
Vendored

'use strict';
module.exports = function (url) {
if (typeof url !== 'string') {
throw new TypeError('Expected a string');
}
return /^[a-z][a-z0-9+.-]*:/.test(url);
};