scittle

DerTev 2022-12-31T21:43:54.620009Z

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

borkdude 2022-12-31T21:52:03.597379Z

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

DerTev 2022-12-31T21:52:28.824599Z

I get

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

borkdude 2022-12-31T21:54:07.458069Z

Did you forget a quote in front of the libspec?

DerTev 2022-12-31T22:01:07.698269Z

Ah, yes, forgot it, thanks!

👍 1