diff options
Diffstat (limited to 'content/posts')
-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." |