Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Jax
0.1.4
MustachePlaceholders/functions/toLower.ps1
Register-PlaceholderFunction
"toLower"
{
param
(
[string]
$thisValue
)
return
$thisValue
.
ToLower
(
)
}