I have a nested object and need a function that let you pass in the object and a key and get back the value.
I am not sure which is the best way to even start working that can be used in all cloud provider.
Example Inputs
object = {“a”:{“b”:{“c”:”d”}}}
key = a/b/c
object = {“x”:{“y”:{“z”:”a”}}}
key = x/y/z
value = a