You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, if an hash had a function defined (ie. `obj = {"fn": f(){ return "hello"}}`)
you couldn't directly invoke the function with `obk.fn()` but you had to
"dereference" it first (eg. `fn = obj.fn; fn()`). This has been fixed with
this PR, adding a bunch more tests, relevant docs and preparing for a new
patch release.
The text was updated successfully, but these errors were encountered: