gitextract_3ud4kvde/ ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── playground.ts ├── src/ │ ├── __snapshots__/ │ │ └── text-splitter.test.ts.snap │ ├── completion.ts │ ├── config.ts │ ├── index.ts │ ├── text-splitter.test.ts │ ├── text-splitter.ts │ ├── types.ts │ └── utils.ts └── tsconfig.json