1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-10-01 07:36:40 +02:00
Files
flexsearch/example/browser-module/basic-worker-extern-config/config.js
Thomas Wilkerling 9026442e06 release 0.8.1
2025-03-24 19:58:52 +01:00

10 lines
282 B
JavaScript

import { Encoder } from "https://cdn.jsdelivr.net/gh/nextapps-de/flexsearch@0.8.1/dist/flexsearch.bundle.module.min.js";
export default {
tokenize: "forward",
encoder: new Encoder({
normalize: function(str){
return str.toLowerCase();
}
})
};