Do we need this check in Microsoft.PowerShell.Commands.ExportCsvHelper? ```powershell ExportCsvHelper(PSCmdlet cmdlet, char delimiter) { if (cmdlet == null) { } _cmdlet = cmdlet; _delimiter = delimiter; } ``` https://github.com/PowerShell/PowerShell/blob/84344cbb32ec5e2479e00394951832794bf37244/src/Microsoft.PowerShell.Commands.Utility/commands/utility/CSVCommands.cs#L880
Do we need this check in Microsoft.PowerShell.Commands.ExportCsvHelper?
PowerShell/src/Microsoft.PowerShell.Commands.Utility/commands/utility/CSVCommands.cs
Line 880 in 84344cb