Skip to content

Instantly share code, notes, and snippets.

@abiodun0
Created November 2, 2017 08:18
Show Gist options
  • Save abiodun0/c3472ecfb530352669ca882528dba669 to your computer and use it in GitHub Desktop.
Save abiodun0/c3472ecfb530352669ca882528dba669 to your computer and use it in GitHub Desktop.
interpose funciton
const interpose = (separator, array) => [].concat.apply([], array.map(item => [separator, item])).slice(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment