Skip to content

Commit

Permalink
SVGLoader: fixed lint error (mrdoob#23222)
Browse files Browse the repository at this point in the history
  • Loading branch information
vojty authored Jan 14, 2022
1 parent 4bed2e7 commit fed9e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/jsm/loaders/SVGLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ class SVGLoader extends Loader {

// Remove empty rules
const definitions = Object.fromEntries(
Object.entries( stylesheet.style ).filter( ( [ _, v ] ) => v !== '' )
Object.entries( stylesheet.style ).filter( ( [ , v ] ) => v !== '' )
);

stylesheets[ selectorList[ j ] ] = Object.assign(
Expand Down

0 comments on commit fed9e42

Please sign in to comment.