Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stevemao/fp-ts-string


https://github.com/stevemao/fp-ts-string

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

> fp-ts extra string utils

```ts
import {split,join} from 'fp-ts-string'
import {pipe} from 'fp-ts/lib/pipeable'
import * as assert from 'assert'

const result = pipe(
"a,b,c",
split(','),
join(':')
)

assert.deepStrictEqual(result, "a:b:c")
```