equal
deleted
inserted
replaced
18 |
18 |
19 import scala.language.postfixOps |
19 import scala.language.postfixOps |
20 |
20 |
21 object V { |
21 object V { |
22 val fatags = "0.6-SNAPSHOT" |
22 val fatags = "0.6-SNAPSHOT" |
23 val scalaJs = "0.6.29" |
23 val scalaJs = "0.6.33" |
24 val scala211 = "2.11.12" |
24 val scala211 = "2.11.12" |
25 val scala212 = "2.12.10" |
25 val scala212 = "2.12.12" |
26 } |
26 } |
27 |
27 |
28 object D { |
28 object D { |
29 val scalatags = ivy"com.lihaoyi::scalatags::0.6.7" |
29 val scalatags = ivy"com.lihaoyi::scalatags::0.6.8" |
30 } |
30 } |
31 |
31 |
32 def camelCase(s: String): String = { |
32 def camelCase(s: String): String = { |
33 def inner(l: List[Char]): List[Char] = l match { |
33 def inner(l: List[Char]): List[Char] = l match { |
34 case '-' :: '-' :: c :: rest => c.toUpper :: inner(rest) |
34 case '-' :: '-' :: c :: rest => c.toUpper :: inner(rest) |