Liking cljdoc? Tell your friends :D
ClojureScript only.

cljs-bean.core


beancljs

(bean)
(bean x)
(bean x & opts)

Takes a JavaScript object and returns a read-only implementation of the map abstraction backed by the object.

By default, bean produces beans that keywordize the keys. Supply :keywordize-keys false to suppress this behavior. You can alternatively supply :prop->key and :key->prop with functions that controls the mapping between properties and keys. Calling (bean) produces an empty bean.

Takes a JavaScript object and returns a read-only implementation of the map
abstraction backed by the object.

By default, bean produces beans that keywordize the keys. Supply
:keywordize-keys false to suppress this behavior. You can alternatively
supply :prop->key and :key->prop with functions that controls the mapping
between properties and keys. Calling (bean) produces an empty bean.
sourceraw docstring

bean?cljs

(bean? x)

Returns true if x is a bean.

Returns true if x is a bean.
sourceraw docstring

objectcljs

(object b)

Takes a bean and returns a JavaScript object.

Takes a bean and returns a JavaScript object.
sourceraw docstring

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

× close