Skip to content

Commit

Permalink
lint fix (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaceninja authored Oct 21, 2021
1 parent a43b948 commit 0f2b902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ const examples = {
}),
};

Object.keys(examples).forEach((name) => {
for (const name of Object.keys(examples)) {
fs.writeFileSync(
path.join(__dirname, `./${name}.svg`),
examples[name],
'utf8'
);
});
}

0 comments on commit 0f2b902

Please sign in to comment.