1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-09-24 20:41:28 +02:00

add missing charset to sources

This commit is contained in:
Thomas Wilkerling
2025-04-13 15:49:08 +02:00
parent 40a9ae0ccb
commit 8588c50c46

14
src/charset/cjk.js Normal file
View File

@@ -0,0 +1,14 @@
import { EncoderOptions } from "../type.js";
// https://en.wikipedia.org/wiki/CJK_characters
/** @type EncoderOptions */
const options = {
split: ""
//normalize: true
// normalize: function(str){
// return str.toLowerCase();
// },
//dedupe: false
};
export default options;