Is there a package with a function that gives cartesian product of two or more sequences?

Package IterTools used to have a product function to create a cartesian product of two or more sequences. Version 1.3.0 of IterTools still has this function, but it appears to be deprecated. Asking for help in the repl returns this

# 1 method for generic function "product":
  [1] product(xss...) in IterTools at deprecated.jl:70

Also, the documentation on the website (Introduction · IterTools) does not include any information on the product function.

Which is the recommended package today to calculate cartesian product of two or more sequences?

Thank you

Use the (built-in) Iterators.product function.

This is great. Thank you so much!
Surprisingly Googling did not help much in this regard.