String formatters.
spago install reprDocumentation and more detailed examples are hosted on Pursuit.
Join an Array into with a delimiter:
> joinWith ", " [ 1, 2, 3 ]
"1, 2, 3"Format a Map into a readable (and debuggable) format:
> kvStrings $ fromFoldable [ Tuple "a" 1 , Tuple "b" 2 , Tuple "c" 3]
[ "a: 1", "b: 2", "c: 3" ]Trim substrings:
> trimStart "a" "abc"
"bc"
> trimStart "d" "abc"
"abc"> trimEnd "c" "abc"
"ab"
> trimEnd "d" "abc"
"abc"To install dependencies:
yarn install
yarn spago installTo run tests:
yarn spago testTo generate the documentation locally:
yarn spago docsTo run linters:
yarn lintTo run formatters:
yarn formatPlease read this repository's Code of Conduct which outlines our collaboration standards and the Changelog for details on breaking changes that have been made.
This repository adheres to semantic versioning standards. For more information on semantic versioning visit SemVer.
Bump2version is used to version and tag changes. For example:
bump2version patch- Joel Lefkowitz - Initial work
Lots of love to the open source community!