// @flow import type { Interpolation } from '../types'; export default ( strings: Array, interpolations: Array ): Array => { const result = [strings[0]]; for (let i = 0, len = interpolations.length; i < len; i += 1) { result.push(interpolations[i], strings[i + 1]); } return result; };