Interlace the contents of an array
Takes an array, splits it in half, then takes it in turns to push an item from each split array back onto a new array
npm install array-interlace --save
var arrayInterlace = require('array-interlace')
console.log(arrayInterlace([ 1, 2, 3, 4, 5, 6 ]))
// Array is [ 1, 4, 2, 5, 3, 6 ]Options must include:
array- an array to interlace
