ps/Modules/Alkami.PowerShell.Common/Public/Write-ArrayToOutput.ps1

18 lines
266 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
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 $_
}
}