We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c20c094 commit 77f6910Copy full SHA for 77f6910
servant-foreign/CHANGELOG.md
@@ -1,3 +1,9 @@
1
+0.10
2
+----
3
+
4
+* Do not apply JavaScript specific mangling to the names.
5
+ ([#191](https://github.com/haskell-servant/servant/issues/191))
6
7
0.7.1
8
-----
9
servant-foreign/test/Servant/ForeignSpec.hs
@@ -19,6 +19,9 @@ camelCaseSpec = describe "camelCase" $ do
19
it "converts FunctionNames to camelCase" $ do
20
camelCase (FunctionName ["post", "counter", "inc"])
21
`shouldBe` "postCounterInc"
22
+ camelCase (FunctionName ["get", "hyphen-ated", "counter"])
23
+ `shouldBe` "getHyphen-atedCounter"
24
25
26
----------------------------------------------------------------------
27
0 commit comments