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 = {
149149 } ,
150150
151151 "<glyph-angle>" : function ( part ) {
152- return part . type == "angle" && part . units == 'deg' ;
152+ return part . type === "angle" && part . units = == 'deg' ;
153153 } ,
154154
155155 "<uri>" : function ( part ) {
@@ -519,10 +519,10 @@ var ValidationTypes = {
519519 identifiers [ part ] ++ ;
520520 found = identifiers [ part ] ;
521521 }
522- } while ( found == 1 && expression . hasNext ( ) ) ;
522+ } while ( found === 1 && expression . hasNext ( ) ) ;
523523
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 ) === '{}' ) {
526526 expression . previous ( ) ;
527527 }
528528 return result ;
You can’t perform that action at this time.
0 commit comments