Daniel Compton
Daniel Compton
I _think_ the use of AbortController will set a fairly high minimum browser [support level](https://caniuse.com/#feat=abortcontroller). It will mean dropping IE11 (which is fine as it doesn't have Fetch either), but...
When I'm making HTTP requests, I have several levels of timeouts I'd like to be able to compose: * Granular connection and response timeouts (unfortunately not exposed in Fetch) *...
I was looking at the page for unsized-media and found it a little bit confusing. > Click the disallow/allow buttons above to see how the page loads with the policy...
I accidentally didn't complete my last row of expressions, but Iota didn't warn about this because it's using `partition` and they were dropped. What do you think about throwing an...
Currently the error messages returned by iota have gensyms and other internals which makes it harder to see the real test failure. For example: clojure.test ``` expected: ["45"] actual: #{"15"...
Clojure and ClojureScript are special dependencies, in that the user is always going to be providing their own version which will override the ones in the `project.clj`. It is good...
My boot project has a `dev` source folder which isn't in the default environment, but is added by a task. What would be the recommended way to inject this into...
I'm not a deep JS expert, especially on new JS compilation technologies. Would you be able to give me a pointer for how to use the usage example, i.e. what...
https://github.com/clojure-emacs/orchard/blob/ce0d586905c53b596679b147806b921f3285ef6e/project.clj#L45-L47 uses `#=(eval` which throws an error: ``` [{:type java.lang.RuntimeException :message EvalReader not allowed when *read-eval* is false. :at [clojure.lang.Util runtimeException Util.java 221]}] ``` It would be good to be...