in JetBrains.SbomUtils/src/JetBrains.SbomUtils/Utils.cs [36:45]
public static Stream Rewind([NotNull] this Stream thіs)
{
if (thіs == null)
throw new ArgumentNullException(nameof(thіs));
if (thіs.Position > 0)
thіs.Seek(0, SeekOrigin.Begin);
return thіs;
}