Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
xpoTools
1.2.0
internal/Test-NotEmpty.ps1
filter
Test-NotEmpty
{
if
(
$_
-and
(
$_
-isnot
[string]
-or
$_
-notmatch
'^\s*$'
)
)
{
$_
}
}