mirror of
https://github.com/nextapps-de/flexsearch.git
synced 2025-09-28 14:29:01 +02:00
17 lines
604 B
JavaScript
17 lines
604 B
JavaScript
import { Encoder, Charset } from "https://rawcdn.githack.com/nextapps-de/flexsearch/aff94f2b1d830e21463b237070f7e6f7eb556b82/dist/flexsearch.bundle.module.min.js";
|
|
import EnglishPreset from "https://rawcdn.githack.com/nextapps-de/flexsearch/aff94f2b1d830e21463b237070f7e6f7eb556b82/dist/module/lang/en.js";
|
|
|
|
export default {
|
|
tokenize: "forward",
|
|
encoder: new Encoder(
|
|
Charset.LatinBalance,
|
|
EnglishPreset,
|
|
{
|
|
normalize: function(str){
|
|
return str.toLowerCase();
|
|
},
|
|
filter: false,
|
|
minlength: 3
|
|
}
|
|
)
|
|
}; |