aboutsummaryrefslogtreecommitdiff
path: root/content/posts
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-03-11 02:46:43 -0500
committerPaul Duncan <pabs@pablotron.org>2022-03-11 02:46:43 -0500
commitc1d38a60d5bfef26006cc1b19f15c1db54915d91 (patch)
treed5e2530370b3843acf766eefb1a1eb4e97fb24dd /content/posts
parent6e8c891d39928277a9214257615c56b03e15d877 (diff)
downloadpablotron.org-c1d38a60d5bfef26006cc1b19f15c1db54915d91.tar.bz2
pablotron.org-c1d38a60d5bfef26006cc1b19f15c1db54915d91.zip
posts/2022-03-09-fastest-js-html-escape.md: add online benchmark tool link
Diffstat (limited to 'content/posts')
-rw-r--r--content/posts/2022-03-09-fastest-js-html-escape.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/content/posts/2022-03-09-fastest-js-html-escape.md b/content/posts/2022-03-09-fastest-js-html-escape.md
index 9195324..3f77e78 100644
--- a/content/posts/2022-03-09-fastest-js-html-escape.md
+++ b/content/posts/2022-03-09-fastest-js-html-escape.md
@@ -166,6 +166,9 @@ const h9 = (v) => {
* `Object.freeze()` doesn't appear to help, at least not in
[Chrome][].
+**Update (2022-03-11):** I posted the benchmarking tool online at the
+following URL: [https://pmdn.org/fastest-js-html-escape/][site].
+
[repo]: https://github.com/pablotron/fastest-js-html-escape
"Fastest JavaScript HTML Escape"
[js]: https://en.wikipedia.org/wiki/ECMAScript
@@ -194,3 +197,5 @@ const h9 = (v) => {
"Document Object Model"
[svg]: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics
"Scalable Vector Graphics"
+[site]: https://pmdn.org/fastest-js-html-escape/
+ "JavaScript HTML Escape benchmark tool."