squint icon indicating copy to clipboard operation
squint copied to clipboard

Light-weight ClojureScript dialect

Results 76 squint issues
Sort by recently updated
recently updated
newest added

This works better for hot-reloading react components with vite while preserving their state

See https://github.com/clojure/clojurescript/pull/214/files

``` clojure (let [s ""] #html [:a s]) ;;=> "" ``` Working on this, by wrapping escaped strings in objects that won't be re-escaped, but when using a custom lit/html...

**version** v0.7.110 **problem** following the usual clojurescript behavior, this macro should be executed during compilation: ```clojure ;; file test.cljs (ns test (:require-macros [test])) (defmacro two [] 2) ;; file test_runner.cljs...

Repro: ``` clojure (ns app (:require ["express$default" :as express])) (def app (express)) (app.get "/" (fn [req res] (js/console.log req.query) (js/console.log (aget req "query")) (js/console.log (get req :query)) (res.send #html [:html...

``` (:require ["js$console :refer [log] :as c]) ``` This syntax will soon be supported in CLJS