These scss "modules" are meant as replacements for the built-in sass modules.
Generally, do not @forward these modules, unless you would also forward
the built-in module it is meant to replace (which is generally not recommended).
For example:
@use '@utility-sass/list'; // adds extras to 'sass:list'
list.flatten(...); // added
list.index(...); // built-in
list.nth(...); // built-in
Modules: