How can a script search a table to find a (non-specific, just any) dictionary value?
Say that I have the dictionary:
globalDict = {
a = "apple";
b = "banana";
c = "cranberry";
bearwithmehere = {
"orange" = "yes"
"pear" = 1
"pineapple" = false
};
}
For the purpose of this example, we do not know the name of ‘bearwithmehere’ or its value.
If I am iterating through globalDict in search of a dictionary (like ‘bearwithmehere’), how would I identify if one of the keys of globalDict is dictionary value?