Remove the prefix from the path
The path to remove the prefix from.
The prefix to remove.
The path without the prefix.
subpath("/api/v1/users", "/not-api"); // "/api/v1/users"subpath("/api/v1/users", "/api/v1"); // "/users"subpath("/api/v1/users", "/api/v1/"); // "/users"subpath("/api/v1/users", "/api/v1/users"); // "/" Copy
subpath("/api/v1/users", "/not-api"); // "/api/v1/users"subpath("/api/v1/users", "/api/v1"); // "/users"subpath("/api/v1/users", "/api/v1/"); // "/users"subpath("/api/v1/users", "/api/v1/users"); // "/"
Remove the prefix from the path