concat-str
v1.0.6
Published
concatinate multiple strings using a simple function
Downloads
18
Readme
concat-str
A simple function with zero dependencies to concatinate multiple strings together to form a proper sentence.
Installation
$ npm install concat-str
# or
$ pnpm add concat-str
# or
$ bun add concat-strUsage
import { concat } from 'concat-str'
console.log(concat("hello", "there")) // # "hello there"
console.log(concat(["hello", "there"])) // # "hello there"