Node.js examples for File:Path
Is local path
function isLocal(excludes, path) { var matched = false; excludes.forEach(function(domain) { if (path.match('^https?://[^/]*'+domain) || path.match('^//[^/]*'+domain)) { matched = true;//w w w. j a v a2 s .c o m } }); return matched; }