Add goog.string/htmlEscape (#106)

Co-authored-by: ikappaki <ikappaki@users.noreply.github.com>
This commit is contained in:
ikappaki 2025-06-02 22:07:53 +01:00 committed by GitHub
parent dc54e3d6b2
commit 07c8d4847d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -10,6 +10,7 @@
<!-- - `bb gh-pages` --> <!-- - `bb gh-pages` -->
- [#102](https://github.com/babashka/scittle/issues/102): add `applied-science/js-interop` plugin. - [#102](https://github.com/babashka/scittle/issues/102): add `applied-science/js-interop` plugin.
- [#105](https://github.com/babashka/scittle/issues/105): add `goog.string/htmlEscape`.
## v0.6.22 (2024-12-19) ## v0.6.22 (2024-12-19)

View file

@ -2,7 +2,7 @@
(:refer-clojure :exclude [time]) (:refer-clojure :exclude [time])
(:require [cljs.reader :refer [read-string]] (:require [cljs.reader :refer [read-string]]
[goog.object :as gobject] [goog.object :as gobject]
[goog.string] [goog.string :as gstring]
[sci.core :as sci] [sci.core :as sci]
[sci.ctx-store :as store] [sci.ctx-store :as store]
[sci.impl.unrestrict] [sci.impl.unrestrict]
@ -46,6 +46,7 @@
'abs (sci/copy-var abs cljns)} 'abs (sci/copy-var abs cljns)}
'goog.object {'set gobject/set 'goog.object {'set gobject/set
'get gobject/get} 'get gobject/get}
'goog.string {'htmlEscape gstring/htmlEscape}
'sci.core {'stacktrace sci/stacktrace 'sci.core {'stacktrace sci/stacktrace
'format-stacktrace sci/format-stacktrace}}) 'format-stacktrace sci/format-stacktrace}})