We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 294b763 commit 195e978Copy full SHA for 195e978
index.js
@@ -39,7 +39,7 @@ function process(input) {
39
return processCopyPaste(input);
40
}
41
42
-function fi(filter, output) {
+function filterOutput(filter, output) {
43
const filterSplit = filter.split(' ');
44
for (const filter of filterSplit) {
45
output = alfy.matches(filter, output, 'match');
@@ -49,4 +49,4 @@ function fi(filter, output) {
49
50
51
const output = process(input);
52
-alfy.output(filter ? fi(filter, output) : output);
+alfy.output(filter ? filterOutput(filter, output) : output);
0 commit comments