What is the Julian equivalent of Python's `np.eye(5, 5, 1)`

It’s I in the LinearAlgebra standard library:

In [1]: using LinearAlgebra

In [2]: I(5)
5×5 Diagonal{Bool, Vector{Bool}}:
 1  ⋅  ⋅  ⋅  ⋅
 ⋅  1  ⋅  ⋅  ⋅
 ⋅  ⋅  1  ⋅  ⋅
 ⋅  ⋅  ⋅  1  ⋅
 ⋅  ⋅  ⋅  ⋅  1