Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit 6dfb618

Browse files
committed
Add { after 'if' condition
Fixes #5
1 parent a892b55 commit 6dfb618

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export default function plugin (options = {}) {
1515

1616
return {
1717
transform (code, id) {
18-
if (!filter(id)) return null
19-
if (extensions.indexOf(path.extname(id)) === -1) return null
18+
if (!filter(id)) { return null }
19+
if (extensions.indexOf(path.extname(id)) === -1) { return null }
2020

2121
return new Promise((resolve) => {
2222
compiler

0 commit comments

Comments
 (0)