Skip to content

Commit

Permalink
Align coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Sep 29, 2022
1 parent a5207f2 commit b8d660f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ const output = input.replace('<% pattern %>', pattern) + '\n';
fs.writeFileSync('./index.js', output);

const inputModule = fs.readFileSync('./src/index.mjs', 'utf8').toString().trim();
const outputModule = inputModule.replace("<% pattern %>", pattern) + "\n";
const outputModule = inputModule.replace('<% pattern %>', pattern) + '\n';

fs.writeFileSync('./index.mjs', outputModule);

0 comments on commit b8d660f

Please sign in to comment.