@sineverba/mergestrings
v1.1.0
Published
It merges multiple strings in one, separate by space
Downloads
4
Readme
| CI / CD | Status |
| ------- | ------ |
| NPM | |
| Semaphore CI |
|
| Circle CI |
|
| Coverall |
|
| SonarCloud |
|
mergestrings merge multiple strings in one string, seaparte by space.
Installation
npm install @sineverba/mergestrings
Usage
import { mergeStrings } from "@sineverba/mergestrings";
const first = "alfa beta";
const second = "foo bar baz"
const result = mergeStrings(first, second);
console.log(result); // it prints "alfa beta foo bar baz"
Tests
npm run test for simple test
npm run coverage for coverage
