From eae82f4bf60b1c0e5dfcf5549ae9321ba526d7c2 Mon Sep 17 00:00:00 2001 From: Alexthetransfem <124483815+theenchantedsword@users.noreply.github.com> Date: Mon, 15 Sep 2025 21:24:00 -0500 Subject: [PATCH] Update orchidslibrary.js --- mods/orchidslibrary.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/orchidslibrary.js b/mods/orchidslibrary.js index 678803ed..bf4e768d 100644 --- a/mods/orchidslibrary.js +++ b/mods/orchidslibrary.js @@ -1,5 +1,5 @@ /* -Version 1.0.0 +*Version 1.0.0 */ function noiseify(color, range){ if(color.startsWith("#")){ @@ -14,7 +14,7 @@ function noiseify(color, range){ return `rgb(${color.r},${color.g},${color.b})`; } -let is2d = (arr)=>{ +function is2d(arr){ return arr.some(item => Array.isArray(item)); }