├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── _config.yml ├── index.md └── modules │ ├── add.ts.md │ ├── adjust.ts.md │ ├── all.ts.md │ ├── allPass.ts.md │ ├── always.ts.md │ ├── and.ts.md │ ├── any.ts.md │ ├── anyPass.ts.md │ ├── append.ts.md │ ├── assoc.ts.md │ ├── clamp.ts.md │ ├── defaultTo.ts.md │ ├── endsWith.ts.md │ ├── equals.ts.md │ ├── fromPairs.ts.md │ ├── index.md │ ├── index.ts.md │ ├── objOf.ts.md │ ├── prop.ts.md │ ├── shared │ ├── monoidAllFoldMap.ts.md │ └── monoidAnyFoldMap.ts.md │ ├── takeLast.ts.md │ ├── toPairs.ts.md │ └── xprod.ts.md ├── dtslint ├── index.d.ts └── ts3.7 │ ├── index.d.ts │ ├── index.ts │ ├── tsconfig.json │ └── tslint.json ├── package.json ├── perf ├── adjust.ts ├── all.ts ├── allPass.ts ├── and.ts ├── any.ts ├── anyPass.ts ├── append.ts ├── clamp.ts ├── defaultTo.ts ├── endsWith.ts ├── equals.ts ├── fromPairs.ts ├── objOf.ts ├── takeLast.ts ├── toPairs.ts ├── tsconfig.json └── xprod.ts ├── src ├── add.ts ├── adjust.ts ├── all.ts ├── allPass.ts ├── always.ts ├── and.ts ├── any.ts ├── anyPass.ts ├── append.ts ├── assoc.ts ├── clamp.ts ├── defaultTo.ts ├── endsWith.ts ├── equals.ts ├── fromPairs.ts ├── index.ts ├── objOf.ts ├── prop.ts ├── shared │ ├── monoidAllFoldMap.ts │ └── monoidAnyFoldMap.ts ├── takeLast.ts ├── toPairs.ts └── xprod.ts ├── test └── index.test.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Home 3 | nav_order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /docs/modules/add.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/add.ts.md -------------------------------------------------------------------------------- /docs/modules/adjust.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/adjust.ts.md -------------------------------------------------------------------------------- /docs/modules/all.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/all.ts.md -------------------------------------------------------------------------------- /docs/modules/allPass.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/allPass.ts.md -------------------------------------------------------------------------------- /docs/modules/always.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/always.ts.md -------------------------------------------------------------------------------- /docs/modules/and.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/and.ts.md -------------------------------------------------------------------------------- /docs/modules/any.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/any.ts.md -------------------------------------------------------------------------------- /docs/modules/anyPass.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/anyPass.ts.md -------------------------------------------------------------------------------- /docs/modules/append.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/append.ts.md -------------------------------------------------------------------------------- /docs/modules/assoc.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/assoc.ts.md -------------------------------------------------------------------------------- /docs/modules/clamp.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/clamp.ts.md -------------------------------------------------------------------------------- /docs/modules/defaultTo.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/defaultTo.ts.md -------------------------------------------------------------------------------- /docs/modules/endsWith.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/endsWith.ts.md -------------------------------------------------------------------------------- /docs/modules/equals.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/equals.ts.md -------------------------------------------------------------------------------- /docs/modules/fromPairs.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/fromPairs.ts.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/index.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/index.ts.md -------------------------------------------------------------------------------- /docs/modules/objOf.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/objOf.ts.md -------------------------------------------------------------------------------- /docs/modules/prop.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/prop.ts.md -------------------------------------------------------------------------------- /docs/modules/shared/monoidAllFoldMap.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/shared/monoidAllFoldMap.ts.md -------------------------------------------------------------------------------- /docs/modules/shared/monoidAnyFoldMap.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/shared/monoidAnyFoldMap.ts.md -------------------------------------------------------------------------------- /docs/modules/takeLast.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/takeLast.ts.md -------------------------------------------------------------------------------- /docs/modules/toPairs.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/toPairs.ts.md -------------------------------------------------------------------------------- /docs/modules/xprod.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/docs/modules/xprod.ts.md -------------------------------------------------------------------------------- /dtslint/index.d.ts: -------------------------------------------------------------------------------- 1 | // TypeScript Version: 3.7 2 | -------------------------------------------------------------------------------- /dtslint/ts3.7/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dtslint/ts3.7/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/dtslint/ts3.7/index.ts -------------------------------------------------------------------------------- /dtslint/ts3.7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/dtslint/ts3.7/tsconfig.json -------------------------------------------------------------------------------- /dtslint/ts3.7/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/dtslint/ts3.7/tslint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/package.json -------------------------------------------------------------------------------- /perf/adjust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/adjust.ts -------------------------------------------------------------------------------- /perf/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/all.ts -------------------------------------------------------------------------------- /perf/allPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/allPass.ts -------------------------------------------------------------------------------- /perf/and.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/and.ts -------------------------------------------------------------------------------- /perf/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/any.ts -------------------------------------------------------------------------------- /perf/anyPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/anyPass.ts -------------------------------------------------------------------------------- /perf/append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/append.ts -------------------------------------------------------------------------------- /perf/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/clamp.ts -------------------------------------------------------------------------------- /perf/defaultTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/defaultTo.ts -------------------------------------------------------------------------------- /perf/endsWith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/endsWith.ts -------------------------------------------------------------------------------- /perf/equals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/equals.ts -------------------------------------------------------------------------------- /perf/fromPairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/fromPairs.ts -------------------------------------------------------------------------------- /perf/objOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/objOf.ts -------------------------------------------------------------------------------- /perf/takeLast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/takeLast.ts -------------------------------------------------------------------------------- /perf/toPairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/toPairs.ts -------------------------------------------------------------------------------- /perf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/tsconfig.json -------------------------------------------------------------------------------- /perf/xprod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/perf/xprod.ts -------------------------------------------------------------------------------- /src/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/add.ts -------------------------------------------------------------------------------- /src/adjust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/adjust.ts -------------------------------------------------------------------------------- /src/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/all.ts -------------------------------------------------------------------------------- /src/allPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/allPass.ts -------------------------------------------------------------------------------- /src/always.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/always.ts -------------------------------------------------------------------------------- /src/and.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/and.ts -------------------------------------------------------------------------------- /src/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/any.ts -------------------------------------------------------------------------------- /src/anyPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/anyPass.ts -------------------------------------------------------------------------------- /src/append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/append.ts -------------------------------------------------------------------------------- /src/assoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/assoc.ts -------------------------------------------------------------------------------- /src/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/clamp.ts -------------------------------------------------------------------------------- /src/defaultTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/defaultTo.ts -------------------------------------------------------------------------------- /src/endsWith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/endsWith.ts -------------------------------------------------------------------------------- /src/equals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/equals.ts -------------------------------------------------------------------------------- /src/fromPairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/fromPairs.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/objOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/objOf.ts -------------------------------------------------------------------------------- /src/prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/prop.ts -------------------------------------------------------------------------------- /src/shared/monoidAllFoldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/shared/monoidAllFoldMap.ts -------------------------------------------------------------------------------- /src/shared/monoidAnyFoldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/shared/monoidAnyFoldMap.ts -------------------------------------------------------------------------------- /src/takeLast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/takeLast.ts -------------------------------------------------------------------------------- /src/toPairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/toPairs.ts -------------------------------------------------------------------------------- /src/xprod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/src/xprod.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giogonzo/fp-ts-ramda/HEAD/tslint.json --------------------------------------------------------------------------------