Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
xpoTools
1.0.0
internal/Test-NotEmpty.ps1
#Requires -Version 5
Set-StrictMode
-Version
Latest
filter
Test-NotEmpty
{
if
(
$_
-and
$_
-notmatch
'^\s*$'
)
{
$_
}
}