summaryrefslogtreecommitdiff
path: root/u/leftpadesque/prepend.ts
blob: 0f1ce308a68615042e599ef7e482108e1bb4c36e (plain)
1
2
3
4
5
export const prependWith = (arr: string[], prep: string) =>
  Array(arr.length * 2)
    .fill(0)
    .map((_, i) => i % 2 === 0)
    .map((isPrep, i) => (isPrep ? prep : arr[i]));