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