Skip to content

Commit

Permalink
chore: switch to pointfree style
Browse files Browse the repository at this point in the history
Co-authored-by: Zack Stickles <zstickles@newrelic.com>
  • Loading branch information
MoonlightKomorebi and zstix committed Aug 27, 2021
1 parent a581309 commit d6fa1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/verify_mdx.js
Expand Up @@ -23,7 +23,7 @@ const main = async () => {
);
}

const allResults = await Promise.all(filePaths.map((f) => readFile(f)));
const allResults = await Promise.all(filePaths.map(readFile));
const results = allResults.filter(Boolean);

console.log(results);
Expand Down

0 comments on commit d6fa1b3

Please sign in to comment.