first commit

This commit is contained in:
2026-02-09 10:48:21 +01:00
commit 15f28c0dd6
848 changed files with 107188 additions and 0 deletions

1
modules/polyfills/css.js Normal file
View File

@@ -0,0 +1 @@
globalThis.CSS||(globalThis.CSS={}),CSS.supports||(CSS.supports=function(prop,value){if("undefined"!=typeof window&&(value=2===arguments.length?value:"inherit",!(prop.includes("--")||value&&value.includes("--")))){if("supportsCSS"in window)return window.supportsCSS(prop,value);try{var camel=prop.replace(/-([a-z]|[0-9])/gi,function(all,letter){return(letter+"").toUpperCase()}),el=document.createElement("div");if(camel in el.style)return el.style.cssText=prop+":"+value,""!==el.style[camel]}catch(err){}}return!1});