Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kylecorbelli/typescript-fp
Functional Programming Utilities and Types. Inspired by Elm and Haskell
https://github.com/kylecorbelli/typescript-fp
Last synced: about 1 month ago
JSON representation
Functional Programming Utilities and Types. Inspired by Elm and Haskell
- Host: GitHub
- URL: https://github.com/kylecorbelli/typescript-fp
- Owner: kylecorbelli
- Created: 2018-05-20T19:17:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-21T02:38:51.000Z (over 6 years ago)
- Last Synced: 2024-10-29T06:55:31.331Z (about 2 months ago)
- Language: TypeScript
- Homepage:
- Size: 63.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TypeScript FP
[![CircleCI](https://circleci.com/gh/kylecorbelli/typescript-fp.svg?style=shield)](https://circleci.com/gh/kylecorbelli/typescript-fp) [![codecov](https://codecov.io/gh/kylecorbelli/typescript-fp/branch/master/graph/badge.svg)](https://codecov.io/gh/kylecorbelli/typescript-fp)
## What is This?
This is a type-safe collection of functional programming utilities and types. It is heavily inspired by Elm and Haskell.## Installation
From the command line:
```
$ npm install --save typescript-fp
```
In your TypeScript files:
```TypeScript
import { Dict, Maybe } from 'typescript-fp'
```