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
As you probably know, Javascript can have frozen or sealed objects. Some objects can also have individual properties defined as non-writable. Under dev mode, you probably want to get some warning when trying to oset! via such objects/properties.
We newly check for frozen/sealed objects when trying punch to through them with oset!. Also we newly check for non-writable properties and report such invalid access accordingly. This was requested in #16.
Notable commits
87bfd0a implement diagnostic checks for frozen/sealed objects (#16)
The library now plays well when you enable :checked-arrays in your project. Checked Array Access is a new feature of recent ClojureScript compiler. Also see #14.
Notable commits
a8ca7b9 project: define dependencies in variables, assemble them as needed