Repository URL to install this package:
|
Version:
1.2.19 ▾
|
@skava/modules
/
___dist
/
view-container
/
styles
/
styled-components
/
src
/
utils
/
interleave.js
|
|---|
// @flow
import { Interpolation } from '../types'
export default (
strings: Array<string>,
interpolations: Array<Interpolation>
): Array<Interpolation> =>
interpolations.reduce(
(array: Array<Interpolation>, interp: Interpolation, i: number) =>
array.concat(interp, strings[i + 1]),
[strings[0]]
)