Add goog.string/htmlEscape

This commit is contained in:
ikappaki 2025-06-01 07:01:54 +01:00
parent dc54e3d6b2
commit 69d0402380
2 changed files with 3 additions and 1 deletions

View file

@ -10,6 +10,7 @@
<!-- - `bb gh-pages` -->
- [#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)

View file

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