CamelConversion: fix to not convert string values (#30595)

This commit is contained in:
Jordan Borean
2017-09-20 13:03:45 +10:00
committed by GitHub
parent 838f39e76a
commit 1ea0293878
2 changed files with 2 additions and 5 deletions

View File

@@ -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
}