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
{{ message }}
This repository was archived by the owner on Mar 13, 2020. It is now read-only.
Cool project, exactly what I was looking for.
I notice one problem. When using immutable=False the function is_object(ref) is called to check whether the element is an Object in order to force the update.
The function, however, returns several false negatives as ref.constructor === Object evaluates to false for several objects. Why not keep only return ref instanceof Object ?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Cool project, exactly what I was looking for.
I notice one problem. When using
immutable=False
thefunction is_object(ref)
is called to check whether the element is an Object in order to force the update.The function, however, returns several false negatives as
ref.constructor === Object
evaluates tofalse
for several objects. Why not keep onlyreturn ref instanceof Object
?The text was updated successfully, but these errors were encountered: