isObservableLike defaults to returning false
·
229 commits
to master
since this release
Prior to this release:
canReflect.isObservableLike([]) //undefined
canReflect.isObservableLike({}) //undefined
canReflect.isObservableLike(null) //falseExpected/fixed behavior:
canReflect.isObservableLike([]) //false
canReflect.isObservableLike({}) //false
canReflect.isObservableLike(null) //falseThis release also adds new NPM scripts to package.json, include release management and cycle detection.