├── .eslintrc.json ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── __tests__ ├── extract.test.ts ├── parse.test.ts └── tsconfig.json ├── logo.png ├── package.json ├── src ├── extractor.ts ├── helpers.ts ├── index.ts └── parser.ts ├── tsconfig.json ├── vitest.config.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/extract.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/__tests__/extract.test.ts -------------------------------------------------------------------------------- /__tests__/parse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/__tests__/parse.test.ts -------------------------------------------------------------------------------- /__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/__tests__/tsconfig.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/package.json -------------------------------------------------------------------------------- /src/extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/src/extractor.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/src/parser.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/letterparser/HEAD/yarn.lock --------------------------------------------------------------------------------