mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 09:09:09 +00:00
8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
var REMOTE_RESOURCE_PATTERN = /^(\w+:\/\/|\/\/)/;
|
|
|
|
function isRemoteResource(uri) {
|
|
return REMOTE_RESOURCE_PATTERN.test(uri);
|
|
}
|
|
|
|
module.exports = isRemoteResource;
|