Update orchidslibrary.js

This commit is contained in:
Alexthetransfem 2025-09-15 21:24:00 -05:00 committed by GitHub
parent 0cd465e63f
commit eae82f4bf6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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));
}