9 lines
172 B
JavaScript
Raw Normal View History

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