mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
CamelConversion: fix to not convert string values (#30595)
This commit is contained in:
parent
838f39e76a
commit
1ea0293878
2 changed files with 2 additions and 5 deletions
|
@ -30,8 +30,6 @@ Function Convert-ListToSnakeCase($list) {
|
|||
$new_value = Convert-DictToSnakeCase -dict $value
|
||||
} elseif ($value -is [Array]) {
|
||||
$new_value = Convert-ListToSnakeCase -list $value
|
||||
} elseif ($value -is [String]) {
|
||||
$new_value = Convert-StringToSnakeCase -string $value
|
||||
} else {
|
||||
$new_value = $value
|
||||
}
|
||||
|
@ -55,8 +53,6 @@ Function Convert-DictToSnakeCase($dict) {
|
|||
$snake_dict.$snake_key = Convert-DictToSnakeCase -dict $value
|
||||
} elseif ($value -is [Array]) {
|
||||
$snake_dict.$snake_key = Convert-ListToSnakeCase -list $value
|
||||
} elseif ($value -is [String]) {
|
||||
$snake_dict.$snake_key = Convert-StringToSnakeCase -string $value
|
||||
} else {
|
||||
$snake_dict.$snake_key = $value
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue