lib/upper-flat-case.psm1
. $PSScriptRoot"\utils\string-to-array.ps1" . $PSScriptRoot"\utils\to-upper-flat-case.ps1" <# .Synopsis Converts text into UpperFlatCase. .DESCRIPTION Converts any text into UpperFlatCase notation. Unnecessary spaces are filtered out. .EXAMPLE ConvertTo-UpperFlatCase "Hello world!" .INPUTS Any string like 'Hello world!'. .OUTPUTS An converted string like 'HelloWorld!' .NOTES Removes all leading, closing and double whitespaces. #> function ConvertTo-UpperFlatCase { param ( [parameter(Mandatory=$true, Position=0)] [ValidateNotNull()] [string] $value ) return StringTo-Array $value | ToUpperFlatCase } Export-ModuleMember -Function ConvetTo-UpperFlatCase |