All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ends.bintry_2.11.0.5.2.source-code.util.scala Maven / Gradle / Ivy

The newest version!
package bintry

import dispatch.Req

object Util {
  private[bintry] def appendPath(to: Req, path: String) =
    (to /: path.split('/')) {
      case (req, seg) => if (seg.isEmpty) req else req / seg
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy