diff options
author | Paul Duncan <pabs@pablotron.org> | 2022-03-11 02:46:43 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2022-03-11 02:46:43 -0500 |
commit | c1d38a60d5bfef26006cc1b19f15c1db54915d91 (patch) | |
tree | d5e2530370b3843acf766eefb1a1eb4e97fb24dd | |
parent | 6e8c891d39928277a9214257615c56b03e15d877 (diff) | |
download | pablotron.org-c1d38a60d5bfef26006cc1b19f15c1db54915d91.tar.bz2 pablotron.org-c1d38a60d5bfef26006cc1b19f15c1db54915d91.zip |
posts/2022-03-09-fastest-js-html-escape.md: add online benchmark tool link
-rw-r--r-- | content/posts/2022-03-09-fastest-js-html-escape.md | 5 |
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." |