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