Skip to content

Commit 84371e0

Browse files
committed
use single quotes
1 parent 2b1b1a5 commit 84371e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/report_binary_size.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function generateReportForNPMPackages() {
6060
if (packageJson[field]) {
6161
const filePath = `${package.location}/${packageJson[field]}`;
6262

63-
const rawCode = fs.readFileSync(filePath, "utf-8");
63+
const rawCode = fs.readFileSync(filePath, 'utf-8');
6464

6565
// remove comments and whitespaces, then get size
6666
const { code } = terser.minify(rawCode, {

0 commit comments

Comments
 (0)