fix empty strings
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
@@ -40,9 +40,13 @@ func flattenJSON(prefix string, in map[string]any, out map[string]any) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
if child == nil {
|
||||||
|
out[key] = ""
|
||||||
|
} else {
|
||||||
out[key] = fmt.Sprintf("%v", child)
|
out[key] = fmt.Sprintf("%v", child)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func flattenJSONFile(inputFile string, outputFile string) error {
|
func flattenJSONFile(inputFile string, outputFile string) error {
|
||||||
|
|||||||
Reference in New Issue
Block a user