summaryrefslogtreecommitdiff
path: root/examples/crossBuilds/simple/js/shared/main/scala/simple/Simple.scala
blob: d3b0278d5dae8158410e33e1569e019e74cdedd8 (plain) (blame)
1
2
3
4
5
6
7
/*shared/main/scala/simple/Simple.scala*/
package simple
object Simple{
  def formatTimes(timestamps: Seq[Long]): String = {
    timestamps.map(Platform.format).mkString("\n")
  }
}