8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
import * as tabs from '../tabs';
|
|
|
|
const getCompletions = (keyword, excludePinned) => {
|
|
return tabs.queryByKeyword(keyword, excludePinned);
|
|
};
|
|
|
|
|
|
export { getCompletions };
|