interleave-values

0.0.1 • Public • Published

interleave-values

Interleave two values producing one string. E.G 'abc' & '123' -> 'a1b2c3'.

The return value is always a string and the 2 inputs are coerced to be strings!

Installation

$ npm install -g interleave-values

Usage

var interleave = require('interleave-values');
 
// two strings
interleave('abc', '123');
// returns 'a1b2c3'
 
// two ints
interleave(123, 456);
// '142536'
 
// values do not have to be of equal length
interleave('abcde', '123');
// returns 'a1b2c3de'
 
interleave('abc', '12345');
// returns 'a1b2c345'
 

Running tests

$ npm test

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i interleave-values

    Weekly Downloads

    4

    Version

    0.0.1

    License

    none

    Last publish

    Collaborators

    • zacbarton