Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSGraph
0.0.8
Private/Get-Indent.ps1
function
Get-Indent
{
[
cmdletbinding
(
)
]
param
(
$depth
=
$script:indent
)
process
{
Write-Debug
"Depth $depth"
(
" "
*
4
*
$depth
)
}
}