ps/Modules/Alkami.PowerShell.Common/Public/Write-ArrayToOutput.ps1
2023-05-30 22:51:22 -07:00

18 lines
266 B
PowerShell

function Write-ArrayToOutput {
<#
.SYNOPSIS
Iterates an array of items and writes them out.
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)]
[object]$items
)
$items | ForEach-Object {
Write-Output $_
}
}