├── .cspell.json ├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── examples ├── build-graph.ts ├── debug-visually.ts └── types.ts ├── graph.svg ├── jest.config.js ├── package.json ├── src ├── ImmutableMap.ts └── index.ts ├── tests ├── ImmutableMap.ts └── index.ts ├── tsconfig.json └── yarn.lock /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/.cspell.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/README.md -------------------------------------------------------------------------------- /examples/build-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/examples/build-graph.ts -------------------------------------------------------------------------------- /examples/debug-visually.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/examples/debug-visually.ts -------------------------------------------------------------------------------- /examples/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/examples/types.ts -------------------------------------------------------------------------------- /graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/graph.svg -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/package.json -------------------------------------------------------------------------------- /src/ImmutableMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/src/ImmutableMap.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/ImmutableMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/tests/ImmutableMap.ts -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no-day/fp-ts-graph/HEAD/yarn.lock --------------------------------------------------------------------------------