mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 10:38:35 +00:00
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
|
var HTTP_RESOURCE_PATTERN = /^http:\/\//;
|
||
|
|
||
|
function isHttpResource(uri) {
|
||
|
return HTTP_RESOURCE_PATTERN.test(uri);
|
||
|
}
|
||
|
|
||
|
module.exports = isHttpResource;
|