From 27ebcb5b88c2c81de1e42dc3a88b0e285d39b514 Mon Sep 17 00:00:00 2001 From: Michael Green Date: Thu, 20 Nov 2025 13:11:43 +1100 Subject: [PATCH] Fix missing newline at end of file in utils.js --- data/src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/src/utils.js b/data/src/utils.js index 3f04852..c547fe5 100644 --- a/data/src/utils.js +++ b/data/src/utils.js @@ -39,4 +39,4 @@ class EJS_UTILS { // always be 0 or 1 (since it is only 1 bit) return (4294967296 * (2097151 & h2) + (h1 >>> 0)).toString(16).padStart(14, "0"); }; -} \ No newline at end of file +}