Opal-Estate-Pro/node_modules/is-absolute-url/index.js
2019-09-13 11:27:52 +07:00

9 lines
172 B
JavaScript
Executable File

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