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 Apr 12, 2024. It is now read-only.
Both return true, as long as does.not is not an object on the current scope.
However scope.$eval("true && doesnotexist"); and scope.$eval("true && undefined"); both return false as expected as long as doesnotexist is not a truthy value on the current scope.
This makes me think it has something to do with using scope.$parse as it only occurs when attempting to access nested properties of undefined values on the scope which scope.$parse suppresses errors for.