Fork me on GitHub
#scittle
<
2022-12-31
>
DerTev21:12:54

Is there a way to import clojure.string? Like is there a NPM-Package for that, that I unpack?

borkdude21:12:03

This is part of the standard scittle package. You can just use require

DerTev21:12:28

I get

(require '[reagent.dom :as dom]
   ^--- Could not resolve symbol: clojure.string
2           '[reagent.core :as r]
3           [clojure.string :as string])

borkdude21:12:07

Did you forget a quote in front of the libspec?

DerTev22:12:07

Ah, yes, forgot it, thanks!

👍 1