diff --git a/ln.json/JSONArray.cs b/ln.json/JSONArray.cs index 27c6e03..c98bf37 100644 --- a/ln.json/JSONArray.cs +++ b/ln.json/JSONArray.cs @@ -62,5 +62,14 @@ namespace ln.json return sb.ToString(); } + public IEnumerable GetValues() + { + foreach (var value in values) + { + if (value is OT otValue) + yield return otValue; + } + } + } }