npm.io
0.0.1 • Published 12 years ago

odd-index-unshift

Licence
ISC
Version
0.0.1
Deps
0
Vulns
0
Weekly
0

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