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
m.data() returns its internal storage, instead of a copy thereof
we assigned that to z
we altered z, which is a reference to m._data
that mutates m._data, which is almost certainly unintentional
this isn't strictly a bug, but, it violates the principle of least surprise at a level that'll get The Hague's attention
modifying to return a copy, but, this invokes the javascript "what kind of copy" nightmare, which may reflect a need for functional parameterization or to emphasize using a self-manageable class
everything is terrible, especially everything
The text was updated successfully, but these errors were encountered:
ugh
the data inside
m
was changed because:z
this isn't strictly a bug, but, it violates the principle of least surprise at a level that'll get The Hague's attention
modifying to return a copy, but, this invokes the javascript "what kind of copy" nightmare, which may reflect a need for functional parameterization or to emphasize using a self-manageable class
everything is terrible, especially everything
The text was updated successfully, but these errors were encountered: