Juho Teperi
Juho Teperi
Is this same case: ``` less @web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700"; .web-font(@path) { @import url("@{path}"); } .web-font(@web-font-path); ``` I'm hitting this problem with the latest Bootswatch version: https://github.com/thomaspark/bootswatch/blob/gh-pages/yeti/bootswatch.less#L5-L10
- Charset name here is quite strange? It doesn't refer to charset really. - Looks like after additional changes this works fully on Cljs now? I would be really careful...
Perhaps just `:characters` (or `:chars`)? Charset (or even character set) means completely different thing in the same context, so it is not an option to use that: https://en.wikipedia.org/wiki/Character_encoding Quick test...
It is possible to rewrite the string loop and char checks to work with unicode values, using codePointAt: ``` diff --git a/src/malli/core.cljc b/src/malli/core.cljc index e8ab01b..2878c12 100644 --- a/src/malli/core.cljc +++ b/src/malli/core.cljc...
What is the use case for this feature? The performance is a bit better (~2x) than Patterns but I don't think that is a huge difference usually. Patterns already support...
If the symbol resolved into function value in `-register-var`, I doubt it matters if the data in the list is symbol or var. (I doubt this is a good "first...
Simplified json-transformer with `:map` decoder. But this has performance considerations because this will run for every `:map` schema in the value being decoded: ``` (defn json-transformer ([] (json-transformer nil)) ([{::keys...
As a note: my current favorite solution for Cljs, when proper timezone support is required, is using js-joda directly. The API is mostly the same as java.time so cljc code...
@dharrigan That is working as intended. `:default` option doesn't do anything without `default-value-transformer`, so the `explain` wont see the default value if you didn't call `decode` to apply `default-value-transformer` first....
@ikitommi Transformer level option probably makes sense. I think on the project where I had use for this, I used `:default/force` for every property which had `:default` value. On Reitit...