Repository URL to install this package:
Version:
1.0.1-0 ▾
|
// @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]]
)