Liking cljdoc? Tell your friends :D

cljs-utils.core


debouncecljs

(debounce source msecs)

Given the input channel source and a debouncing time of msecs, return a new channel that will forward the latest event from source at most every msecs milliseconds

Given the input channel source and a debouncing time of msecs, return a new
channel that will forward the latest event from source at most every msecs
milliseconds
raw docstring

dissocvcljs

(dissocv v i)

Remove an element from a vector at the given index, returning the new vector

Remove an element from a vector at the given index, returning the new vector
raw docstring

flipcljs

(flip f & a)

Partially apply the function f to the given args, which will come after the next args. i.e. ((flip vector 3 4) 1 2) => [1 2 3 4]

Partially apply the function f to the given args, which will come after the
next args.  i.e. ((flip vector 3 4) 1 2) => [1 2 3 4]
raw docstring

(link-attr? attr)

Is the given attribute a reference?

Is the given attribute a reference?
raw docstring

string-to-datecljs

(string-to-date string)

attempts to cast a string as a date, or returns nil

attempts to cast a string as a date, or returns nil
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close