File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ var ValidationTypes = {
149
149
} ,
150
150
151
151
"<glyph-angle>" : function ( part ) {
152
- return part . type == "angle" && part . units == 'deg' ;
152
+ return part . type === "angle" && part . units = == 'deg' ;
153
153
} ,
154
154
155
155
"<uri>" : function ( part ) {
@@ -519,10 +519,10 @@ var ValidationTypes = {
519
519
identifiers [ part ] ++ ;
520
520
found = identifiers [ part ] ;
521
521
}
522
- } while ( found == 1 && expression . hasNext ( ) ) ;
522
+ } while ( found === 1 && expression . hasNext ( ) ) ;
523
523
524
- result = found == 1 && ! expression . hasNext ( ) ;
525
- if ( found === 0 && JSON . stringify ( identifiers ) == '{}' ) {
524
+ result = found === 1 && ! expression . hasNext ( ) ;
525
+ if ( found === 0 && JSON . stringify ( identifiers ) === '{}' ) {
526
526
expression . previous ( ) ;
527
527
}
528
528
return result ;
You can’t perform that action at this time.
0 commit comments