Fix #72: add update-vals and other fns
This commit is contained in:
parent
71c224baa7
commit
f63d50215d
|
@ -5,6 +5,7 @@
|
|||
## Unreleased
|
||||
|
||||
- [#69](https://github.com/babashka/babashka/issues/69): executing script tag with src + whitespace doesn't work
|
||||
- [#72](https://github.com/babashka/babashka/issues/72): add clojure 1.11 functions like `update-vals`
|
||||
|
||||
## v0.6.15 (2023-05-04)
|
||||
|
||||
|
|
|
@ -28,8 +28,18 @@
|
|||
{'clojure.core
|
||||
{'time (sci/copy-var time cljns)
|
||||
'system-time (sci/copy-var system-time cljns)
|
||||
'random-uuid random-uuid
|
||||
'read-string (sci/copy-var read-string rns)}
|
||||
'random-uuid (sci/copy-var random-uuid cljns)
|
||||
'read-string (sci/copy-var read-string cljns)
|
||||
'update-keys (sci/copy-var update-keys cljns)
|
||||
'update-vals (sci/copy-var update-vals cljns)
|
||||
'parse-boolean (sci/copy-var parse-boolean cljns)
|
||||
'parse-double (sci/copy-var parse-double cljns)
|
||||
'parse-long (sci/copy-var parse-long cljns)
|
||||
'parse-uuid (sci/copy-var parse-uuid cljns)
|
||||
'NaN? (sci/copy-var NaN? cljns)
|
||||
'infinite? (sci/copy-var infinite? cljns)
|
||||
'iteration (sci/copy-var iteration cljns)
|
||||
'abs (sci/copy-var abs cljns)}
|
||||
'goog.object {'set gobject/set
|
||||
'get gobject/get}
|
||||
'sci.core {'stacktrace sci/stacktrace
|
||||
|
|
Loading…
Reference in a new issue