Skip to content

Commit 195e978

Browse files
committed
Cleanup filter function name
1 parent 294b763 commit 195e978

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function process(input) {
3939
return processCopyPaste(input);
4040
}
4141

42-
function fi(filter, output) {
42+
function filterOutput(filter, output) {
4343
const filterSplit = filter.split(' ');
4444
for (const filter of filterSplit) {
4545
output = alfy.matches(filter, output, 'match');
@@ -49,4 +49,4 @@ function fi(filter, output) {
4949
}
5050

5151
const output = process(input);
52-
alfy.output(filter ? fi(filter, output) : output);
52+
alfy.output(filter ? filterOutput(filter, output) : output);

0 commit comments

Comments
 (0)