Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ let match = (path, uri) => pick([{ path }], uri);
// require less contextual information and (fingers crossed) be more intuitive.
let resolve = (to, base) => {
// /foo/bar, /baz/qux => /foo/bar
if (startsWith(to, "/")) {
if (typeof to === "number" || startsWith(to, "/")) {
return to;
}

Expand Down
1 change: 1 addition & 0 deletions src/lib/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ describe("resolve", () => {
expect(resolve("/groups?some=query", "/users?some=thing")).toEqual(
"/groups?some=query"
);
expect(resolve(-1)).toEqual(-1);
});
});

Expand Down