Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevemao/fp-ts-string
https://github.com/stevemao/fp-ts-string
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/stevemao/fp-ts-string
- Owner: stevemao
- Created: 2020-04-06T08:53:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-18T15:09:06.000Z (over 3 years ago)
- Last Synced: 2024-11-07T13:53:16.354Z (about 2 months ago)
- Language: TypeScript
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
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")
```