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
This is equivalent to (set! (.-foo goog/global) 1) which might be more idiomatic.
One approach could be to convert (set! js/foo) to (set! (.-foo js) ..) and then process that further. This solution would then also work for other aliases that refer to JS objects.
The text was updated successfully, but these errors were encountered:
This is equivalent to
(set! (.-foo goog/global) 1)
which might be more idiomatic.One approach could be to convert
(set! js/foo)
to(set! (.-foo js) ..)
and then process that further. This solution would then also work for other aliases that refer to JS objects.The text was updated successfully, but these errors were encountered: