1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-08-10 16:14:17 +02:00
Files
2025-03-20 09:45:18 +01:00

10 lines
206 B
JavaScript

const { Encoder } = require("flexsearch");
module.exports = {
tokenize: "forward",
encoder: new Encoder({
normalize: function(str){
return str.toLowerCase();
}
})
};