How do i check if an instance is of type StringMap ?
when i try to use
Std.is(o, StringMap<Dynamic>)
i get an error for the last parenthasis…
is there any other way?
How do i check if an instance is of type StringMap ?
when i try to use
Std.is(o, StringMap<Dynamic>)
i get an error for the last parenthasis…
is there any other way?
OK, got it,
Just remove the typing:
Std.is(o, StringMap)