Files
red_de_investigacion_front/node_modules/is-absolute-url/index.js
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06:00

9 lines
172 B
JavaScript

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