1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-08-08 15:17:18 +02:00
Files
Thomas Wilkerling b2db45a47c update bundle
2025-03-26 00:08:29 +01:00

10 lines
199 B
JavaScript

import { Encoder } from "flexsearch";
export default {
tokenize: "forward",
encoder: new Encoder({
normalize: function(str){
return str.toLowerCase();
}
})
};