├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .browserslistrc ├── .gitignore ├── babel.config.js ├── docs │ ├── concepts │ │ ├── _category_.yml │ │ ├── application.md │ │ ├── arguments-permutation.md │ │ ├── composition.md │ │ ├── currying.md │ │ ├── guarding.md │ │ ├── lens.md │ │ ├── monads.md │ │ └── side-effects.md │ ├── installation-and-usage.md │ ├── migrating-to-v2.md │ ├── migrating-to-v3.md │ └── overview.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── scripts │ └── make-api-categories.js ├── sidebars.js ├── src │ ├── css │ │ └── custom.css │ └── theme │ │ └── palette.css ├── static │ ├── .nojekyll │ ├── favicon.ico │ └── logo.svg ├── tsconfig.json ├── typedoc.json └── yarn.lock ├── jest.config.js ├── logo.svg ├── package.json ├── scripts └── prepublish.js ├── src ├── apply.ts ├── compose.ts ├── curry.ts ├── either │ ├── either-sync.ts │ ├── either.ts │ ├── index.ts │ ├── left.ts │ ├── operators │ │ ├── bifold-map │ │ │ ├── bifold-map.ts │ │ │ ├── bifoldl-map.ts │ │ │ ├── bifoldr-map.ts │ │ │ └── index.ts │ │ ├── bifold │ │ │ ├── bifold.ts │ │ │ ├── bifoldl.ts │ │ │ ├── bifoldr.ts │ │ │ └── index.ts │ │ ├── bimap │ │ │ ├── bimap.ts │ │ │ ├── first.ts │ │ │ ├── index.ts │ │ │ └── second.ts │ │ ├── bindr.ts │ │ ├── guards.ts │ │ └── index.ts │ └── right.ts ├── guard.ts ├── identity.ts ├── index.ts ├── inject.ts ├── lens │ ├── get.ts │ ├── index.ts │ ├── lens.ts │ └── set.ts ├── maybe │ ├── index.ts │ ├── just.ts │ ├── maybe.ts │ ├── nothing.ts │ └── operators │ │ ├── bind.ts │ │ ├── fmap.ts │ │ ├── fold-map.ts │ │ ├── fold.ts │ │ ├── guards.ts │ │ └── index.ts ├── permutation │ ├── index.ts │ ├── permutation-2.ts │ └── permutation-3.ts ├── pipe.ts ├── rethrow.ts ├── tap.ts └── types │ ├── effect.d.ts │ ├── flatten.d.ts │ ├── function.d.ts │ ├── gradual.d.ts │ ├── index.d.ts │ ├── last.d.ts │ ├── map.d.ts │ ├── slice.d.ts │ ├── trim.d.ts │ ├── tuple.d.ts │ └── unshift.d.ts ├── tests ├── apply.spec.ts ├── compose.spec.ts ├── curry.spec.ts ├── either.spec.ts ├── get.spec.ts ├── guard.spec.ts ├── inject.spec.ts ├── maybe.spec.ts ├── permutation │ ├── permutation-2.spec.ts │ └── permutation-3.spec.ts ├── pipe.spec.ts ├── rethrow.spec.ts ├── set.spec.ts └── tap.spec.ts ├── tsconfig.build.json ├── tsconfig.ci.json ├── tsconfig.json ├── tsconfig.spec.json ├── typetests ├── apply.test.ts ├── compose.test.ts ├── curry.test.ts ├── either.test.ts ├── get.test.ts ├── maybe.test.ts ├── pipe.test.ts ├── set.test.ts └── tacit.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | lib 3 | coverage 4 | node_modules 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/README.md -------------------------------------------------------------------------------- /docs/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/.browserslistrc -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/concepts/_category_.yml: -------------------------------------------------------------------------------- 1 | label: Concepts 2 | position: 2 3 | collapsed: false 4 | -------------------------------------------------------------------------------- /docs/docs/concepts/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/application.md -------------------------------------------------------------------------------- /docs/docs/concepts/arguments-permutation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/arguments-permutation.md -------------------------------------------------------------------------------- /docs/docs/concepts/composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/composition.md -------------------------------------------------------------------------------- /docs/docs/concepts/currying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/currying.md -------------------------------------------------------------------------------- /docs/docs/concepts/guarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/guarding.md -------------------------------------------------------------------------------- /docs/docs/concepts/lens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/lens.md -------------------------------------------------------------------------------- /docs/docs/concepts/monads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/monads.md -------------------------------------------------------------------------------- /docs/docs/concepts/side-effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/concepts/side-effects.md -------------------------------------------------------------------------------- /docs/docs/installation-and-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/installation-and-usage.md -------------------------------------------------------------------------------- /docs/docs/migrating-to-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/migrating-to-v2.md -------------------------------------------------------------------------------- /docs/docs/migrating-to-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/migrating-to-v3.md -------------------------------------------------------------------------------- /docs/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docs/overview.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/scripts/make-api-categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/scripts/make-api-categories.js -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/theme/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/src/theme/palette.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/static/favicon.ico -------------------------------------------------------------------------------- /docs/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/static/logo.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/typedoc.json -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/jest.config.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/scripts/prepublish.js -------------------------------------------------------------------------------- /src/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/apply.ts -------------------------------------------------------------------------------- /src/compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/compose.ts -------------------------------------------------------------------------------- /src/curry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/curry.ts -------------------------------------------------------------------------------- /src/either/either-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/either-sync.ts -------------------------------------------------------------------------------- /src/either/either.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/either.ts -------------------------------------------------------------------------------- /src/either/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/index.ts -------------------------------------------------------------------------------- /src/either/left.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/left.ts -------------------------------------------------------------------------------- /src/either/operators/bifold-map/bifold-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold-map/bifold-map.ts -------------------------------------------------------------------------------- /src/either/operators/bifold-map/bifoldl-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold-map/bifoldl-map.ts -------------------------------------------------------------------------------- /src/either/operators/bifold-map/bifoldr-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold-map/bifoldr-map.ts -------------------------------------------------------------------------------- /src/either/operators/bifold-map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold-map/index.ts -------------------------------------------------------------------------------- /src/either/operators/bifold/bifold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold/bifold.ts -------------------------------------------------------------------------------- /src/either/operators/bifold/bifoldl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold/bifoldl.ts -------------------------------------------------------------------------------- /src/either/operators/bifold/bifoldr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold/bifoldr.ts -------------------------------------------------------------------------------- /src/either/operators/bifold/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bifold/index.ts -------------------------------------------------------------------------------- /src/either/operators/bimap/bimap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bimap/bimap.ts -------------------------------------------------------------------------------- /src/either/operators/bimap/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bimap/first.ts -------------------------------------------------------------------------------- /src/either/operators/bimap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bimap/index.ts -------------------------------------------------------------------------------- /src/either/operators/bimap/second.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bimap/second.ts -------------------------------------------------------------------------------- /src/either/operators/bindr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/bindr.ts -------------------------------------------------------------------------------- /src/either/operators/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/guards.ts -------------------------------------------------------------------------------- /src/either/operators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/operators/index.ts -------------------------------------------------------------------------------- /src/either/right.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/either/right.ts -------------------------------------------------------------------------------- /src/guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/guard.ts -------------------------------------------------------------------------------- /src/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/identity.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/inject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/inject.ts -------------------------------------------------------------------------------- /src/lens/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/lens/get.ts -------------------------------------------------------------------------------- /src/lens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/lens/index.ts -------------------------------------------------------------------------------- /src/lens/lens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/lens/lens.ts -------------------------------------------------------------------------------- /src/lens/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/lens/set.ts -------------------------------------------------------------------------------- /src/maybe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/index.ts -------------------------------------------------------------------------------- /src/maybe/just.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/just.ts -------------------------------------------------------------------------------- /src/maybe/maybe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/maybe.ts -------------------------------------------------------------------------------- /src/maybe/nothing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/nothing.ts -------------------------------------------------------------------------------- /src/maybe/operators/bind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/operators/bind.ts -------------------------------------------------------------------------------- /src/maybe/operators/fmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/operators/fmap.ts -------------------------------------------------------------------------------- /src/maybe/operators/fold-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/operators/fold-map.ts -------------------------------------------------------------------------------- /src/maybe/operators/fold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/operators/fold.ts -------------------------------------------------------------------------------- /src/maybe/operators/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/operators/guards.ts -------------------------------------------------------------------------------- /src/maybe/operators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/maybe/operators/index.ts -------------------------------------------------------------------------------- /src/permutation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/permutation/index.ts -------------------------------------------------------------------------------- /src/permutation/permutation-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/permutation/permutation-2.ts -------------------------------------------------------------------------------- /src/permutation/permutation-3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/permutation/permutation-3.ts -------------------------------------------------------------------------------- /src/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/pipe.ts -------------------------------------------------------------------------------- /src/rethrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/rethrow.ts -------------------------------------------------------------------------------- /src/tap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/tap.ts -------------------------------------------------------------------------------- /src/types/effect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/effect.d.ts -------------------------------------------------------------------------------- /src/types/flatten.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/flatten.d.ts -------------------------------------------------------------------------------- /src/types/function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/function.d.ts -------------------------------------------------------------------------------- /src/types/gradual.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/gradual.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/last.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/last.d.ts -------------------------------------------------------------------------------- /src/types/map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/map.d.ts -------------------------------------------------------------------------------- /src/types/slice.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/slice.d.ts -------------------------------------------------------------------------------- /src/types/trim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/trim.d.ts -------------------------------------------------------------------------------- /src/types/tuple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/tuple.d.ts -------------------------------------------------------------------------------- /src/types/unshift.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/src/types/unshift.d.ts -------------------------------------------------------------------------------- /tests/apply.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/apply.spec.ts -------------------------------------------------------------------------------- /tests/compose.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/compose.spec.ts -------------------------------------------------------------------------------- /tests/curry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/curry.spec.ts -------------------------------------------------------------------------------- /tests/either.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/either.spec.ts -------------------------------------------------------------------------------- /tests/get.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/get.spec.ts -------------------------------------------------------------------------------- /tests/guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/guard.spec.ts -------------------------------------------------------------------------------- /tests/inject.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/inject.spec.ts -------------------------------------------------------------------------------- /tests/maybe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/maybe.spec.ts -------------------------------------------------------------------------------- /tests/permutation/permutation-2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/permutation/permutation-2.spec.ts -------------------------------------------------------------------------------- /tests/permutation/permutation-3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/permutation/permutation-3.spec.ts -------------------------------------------------------------------------------- /tests/pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/pipe.spec.ts -------------------------------------------------------------------------------- /tests/rethrow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/rethrow.spec.ts -------------------------------------------------------------------------------- /tests/set.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/set.spec.ts -------------------------------------------------------------------------------- /tests/tap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tests/tap.spec.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tsconfig.ci.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /typetests/apply.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/apply.test.ts -------------------------------------------------------------------------------- /typetests/compose.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/compose.test.ts -------------------------------------------------------------------------------- /typetests/curry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/curry.test.ts -------------------------------------------------------------------------------- /typetests/either.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/either.test.ts -------------------------------------------------------------------------------- /typetests/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/get.test.ts -------------------------------------------------------------------------------- /typetests/maybe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/maybe.test.ts -------------------------------------------------------------------------------- /typetests/pipe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/pipe.test.ts -------------------------------------------------------------------------------- /typetests/set.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/set.test.ts -------------------------------------------------------------------------------- /typetests/tacit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/typetests/tacit.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drizzer14/fnts/HEAD/yarn.lock --------------------------------------------------------------------------------