mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-15 02:35:46 +00:00
16 lines
No EOL
332 B
PowerShell
16 lines
No EOL
332 B
PowerShell
function GenerateSlug {
|
|
[CmdletBinding()]
|
|
[OutputType([string])]
|
|
param (
|
|
[Parameter(Mandatory = $true)]
|
|
[string]$Slug
|
|
)
|
|
|
|
Write-Verbose "Generating slug"
|
|
|
|
$Slug = $Slug.Replace("-", "").Replace(" ", "-").ToLower()
|
|
|
|
Write-Verbose " Completed building URIBuilder"
|
|
# Return the entire UriBuilder object
|
|
$Slug
|
|
} |