UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

10 lines (8 loc) 166 B
var parse = require('url').parse; exports.pathMatch = function(url, path) { try { return parse(url).pathname === path; } catch (e) { return false; } }