npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

fp-ts-string

1.1.1

@stevemao

npmHomeRepoSnykSocket
Downloads:4
$ npm install fp-ts-string
DailyWeeklyMonthlyYearly

fp-ts extra string utils

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")