mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
8 lines
152 B
JavaScript
Vendored
8 lines
152 B
JavaScript
Vendored
var HTTP_RESOURCE_PATTERN = /^http:\/\//;
|
|
|
|
function isHttpResource(uri) {
|
|
return HTTP_RESOURCE_PATTERN.test(uri);
|
|
}
|
|
|
|
module.exports = isHttpResource;
|