Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
// @flow
import interleave from '../utils/interleave'
import flatten from '../utils/flatten'
import { Interpolation, RuleSet } from '../types'

export default (
  strings: Array<string>,
  ...interpolations: Array<Interpolation>
): RuleSet => flatten(interleave(strings, interpolations))