mirror of
https://github.com/nextapps-de/flexsearch.git
synced 2025-10-03 16:41:50 +02:00
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
import { Encoder } from "https://rawcdn.githack.com/nextapps-de/flexsearch/a006c24bbb6f77ad491fa81c1c30481efa2431de/dist/flexsearch.bundle.module.min.js";
|
|
|
|
export default {
|
|
tokenize: "forward",
|
|
encoder: new Encoder({
|
|
normalize: function(str){
|
|
return str.toLowerCase();
|
|
}
|
|
})
|
|
}; |