Code coverage report for webpack-hot-middleware/helpers.js

Statements: 100% (8 / 8)      Branches: 100% (4 / 4)      Functions: 100% (1 / 1)      Lines: 100% (6 / 6)      Ignored: none     

All files » webpack-hot-middleware/ » helpers.js
1 2 3 4 5 6 7 8 91   1 11 3 3 1    
exports.pathMatch = pathMatch;
 
function pathMatch(url, path) {
  if (url == path) return true;
  var q = url.indexOf('?');
  if (q == -1) return false;
  return url.substring(0, q) == path;
}