Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit c1f2c3e

Browse files
committed
refactor($parse): remove commented out code
1 parent 6af2ff2 commit c1f2c3e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/ng/parse.js

-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ var OPERATORS = extend(createMap(), {
123123
'&&':function(self, locals, a,b){return a(self, locals)&&b(self, locals);},
124124
'||':function(self, locals, a,b){return a(self, locals)||b(self, locals);},
125125
'&':function(self, locals, a,b){return a(self, locals)&b(self, locals);},
126-
// '|':function(self, locals, a,b){return a|b;},
127126
'!':function(self, locals, a){return !a(self, locals);},
128127

129128
//Tokenized as operators but parsed as assignment/filters

0 commit comments

Comments
 (0)