Get the name of every player to wear a specific jersey number in the NHL and the season in which they wore it.

get_jersey_players(jersey)

Arguments

jersey

An integer or a vector of integers between 0 & 99

Value

A tibble containing each player-season where a player wore the specified number

Examples

if (FALSE) {
#' get_jersey_players(69)
get_jersey_players(c(99, 66))
}