cljs-dev

ClojureScript compiler & std lib dev, https://clojurescript.org/community/dev
frozar 2020-05-09T12:52:23.332700Z

Hi guys, I had to create/use a non standard range function like this:

(range-math 0 1 5)
;; => (0 0.25 0.5 0.75 1)

(range-math 0 1 5 :log)
;; => (0 0.5118833609788743 0.7403626894942438 0.8893017025063101 1)
And I was wondering, do you know a clojurescript lib that gives this functionality?

frozar 2020-05-09T12:53:09.333400Z

If it's not the right place to ask this question, please just tell me πŸ™‚

favila 2020-05-09T13:34:15.335700Z

#clojurescript is a better place. This channel is for working on cljs not in itβ€”ie changes to the language implementation itself

frozar 2020-05-09T13:36:29.335900Z

Ok, I'll try there, thank you πŸ™‚