1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/lib/models/Search.ts

23 lines
662 B
TypeScript

// This class doesn't appear to be used at all
import BaseModel from '../BaseModel';
export default class Search extends BaseModel {
public static tableName(): string {
throw new Error('Not using database');
}
public static modelType() {
return BaseModel.TYPE_SEARCH;
}
public static keywords(query: string) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
let output: any = query.trim();
output = output.split(/[\s\t\n]+/);
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
output = output.filter((o: any) => !!o);
return output;
}
}