This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/webpack-hot-middleware/helpers.js
2020-11-01 22:46:04 +00:00

10 lines
167 B
JavaScript

var parse = require('url').parse;
exports.pathMatch = function(url, path) {
try {
return parse(url).pathname === path;
} catch (e) {
return false;
}
};