├── .gitignore ├── array.ts ├── collection.ts ├── date.ts ├── functions.ts ├── index.ts ├── lang.ts ├── object.ts ├── package.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/array.ts -------------------------------------------------------------------------------- /collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/collection.ts -------------------------------------------------------------------------------- /date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/date.ts -------------------------------------------------------------------------------- /functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/functions.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/lang.ts -------------------------------------------------------------------------------- /object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/object.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tecklund/lodash-to-fp-ts/HEAD/yarn.lock --------------------------------------------------------------------------------