next
Version:
The React Framework
15 lines (14 loc) • 439 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.pathHasPrefix = pathHasPrefix;
var _parsePath = require("./parse-path");
function pathHasPrefix(path, prefix) {
if (typeof path !== 'string') {
return false;
}
const { pathname } = (0, _parsePath).parsePath(path);
return pathname === prefix || pathname.startsWith(prefix + '/');
}
//# sourceMappingURL=path-has-prefix.js.map
;