0.0.1 • Published 10 years ago

odd-index-unshift v0.0.1

Weekly downloads
13
License
ISC
Repository
github
Last release
10 years ago

odd-index-unshift

Unshift the odd index items of an array

build status

Installation

npm install odd-index-unshift --save

Usage

var oddIndexUnshift = require('./')

console.log(oddIndexUnshift([ 1, 2, 3, 4, 5, 6 ]))
// Equals => [ 1, 3, 5, 2, 4, 6 ]

var oddUnshiftedArray = oddIndexUnshift(array)

Options must include:

  • array - an array to unshift

Credits

Dom Harrington