Skip to content
This repository was archived by the owner on Feb 1, 2020. It is now read-only.

Commit 0649aff

Browse files
committed
Prettier
1 parent d8aba5f commit 0649aff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/search.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ export const assets = (assets = [], extensions = []) =>
1919
.filter(a => a)
2020

2121
export const files = (chunk, extensions = [], getter = a => a) =>
22-
chunk
23-
.modules.map(module => {
22+
chunk.modules
23+
.map(module => {
2424
const file = getter(module)
2525
if (!file) return null
2626
return extensions.indexOf(path.extname(file)) >= 0 && file
2727
})
28-
.filter(a => a)
28+
.filter(a => a)

0 commit comments

Comments
 (0)