1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-10-01 23:56:41 +02:00
Files
flexsearch/example/browser-module/basic-worker-extern-config/config.js
Thomas Wilkerling 0455fa4b74 hotfix typo
2025-03-17 20:05:10 +01:00

10 lines
282 B
JavaScript

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