# @pelevesque/interlace-strings

> Interlaces strings together.

Latest version **0.0.4** (published 2020-02-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install @pelevesque/interlace-strings
pnpm add @pelevesque/interlace-strings
yarn add @pelevesque/interlace-strings
bun add @pelevesque/interlace-strings
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2020-02-12 |
| First published | 2019-05-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=9.0.0 |
| Dependencies | 1 |
| Unpacked size | 6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Pierre-Emmanuel Lévesque |
| Maintainers | pelevesque |
| Keywords | interlace, string, strings |

## Links

- npm: https://www.npmjs.com/package/@pelevesque/interlace-strings
- Repository: https://github.com/pelevesque/interlace-strings
- Homepage: https://github.com/pelevesque/interlace-strings#readme
- Issues: https://github.com/pelevesque/interlace-strings/issues
- npm.io page: https://npm.io/package/@pelevesque/interlace-strings

## Dependencies (1)

- [interlace-arrays](https://npm.io/package/interlace-arrays.md) ^1.0.0

## Alternatives

- [@mce/gif](https://npm.io/package/@mce/gif.md) — 2.6K weekly downloads
- [cleanse](https://npm.io/package/cleanse.md) — 173 weekly downloads
- [str](https://npm.io/package/str.md) — 127 weekly downloads
- [naming](https://npm.io/package/naming.md) — 95 weekly downloads
- [tap-telco-api](https://npm.io/package/tap-telco-api.md) — 19 weekly downloads

## Recent versions

- 0.0.4 (latest) — 2020-02-12
- 0.0.3 — 2019-06-16
- 0.0.2 — 2019-05-31
- 0.0.1 — 2019-05-21

## README

[![Build Status](https://travis-ci.org/pelevesque/interlace-strings.svg?branch=master)](https://travis-ci.org/pelevesque/interlace-strings)
[![Coverage Status](https://coveralls.io/repos/github/pelevesque/interlace-strings/badge.svg?branch=master)](https://coveralls.io/github/pelevesque/interlace-strings?branch=master)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

# interlace-strings

Interlaces strings together.

## Node Repository

https://www.npmjs.com/package/@pelevesque/interlace-strings

## Installation

`npm install @pelevesque/interlace-strings`

## Tests

Command                      | Description
---------------------------- | ------------
`npm test` or `npm run test` | All Tests Below
`npm run cover`              | Standard Style
`npm run standard`           | Coverage
`npm run unit`               | Unit Tests

## Usage

```js
const interlaceStrings = require('@pelevesque/interlace-strings')
```

```js
const str1 = '12345'
const str2 = 'abcde'
const arrayOfStrings = [str1, str2]
const result = interlaceStrings(arrayOfStrings)
// result === 1a2b3c4d5e
```

```js
const str1 = '12345678'
const str2 = 'abcdef'
const str3 = '!@#$'
const str4 = '_-'
const arrayOfStrings = [str1, str2, str3, str4]
const result = interlaceStrings(arrayOfStrings)
// result === 1a!_2b@-3c#4d$5e6f78
```

---
_Source: https://npm.io/package/@pelevesque/interlace-strings · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
