Function subpath

  • Remove the prefix from the path

    Parameters

    • path: `/${string}`

      The path to remove the prefix from.

    • prefix: `/${string}`

      The prefix to remove.

    Returns EventPath

    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"); // "/"