@clearsummit/carabiners
v0.1.0
Published
Helpers and Utilities
Downloads
20
Keywords
Readme
Carabiners
Bits that hold you code together
Description
Usage
Import the functions or utilities that you'd like to use as named imports.
import { joinStr } from '@clearsummit/carabiners'
const name = joinStr('John', 'Smith)
console.log(name)
// 'John Smith'
const hyphenName = joinStr({char: '-'}, 'John', 'Smith)
console.log(hyphenName)
John-Smith