This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
angular.equals needs to test for double $ #8325
Open
Description
Due to #6253, angular.equals needs to test for key.charAt(0) === '$' && key.charAt(1) === '$'
, not simply key.charAt(0) === '$'
The current test for single '$' breaks angular.equals, as well as anything that relies on it ($watch, for example).