Configuración completa para EasyPanel - variables de entorno

This commit is contained in:
Panchito
2026-07-21 14:13:16 -05:00
parent a731779958
commit 155130cb5b
5073 changed files with 701542 additions and 286 deletions

20
frontend/node_modules/dom-helpers/esm/matches.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
var matchesImpl;
/**
* Checks if a given element matches a selector.
*
* @param node the element
* @param selector the selector
*/
export default function matches(node, selector) {
if (!matchesImpl) {
var body = document.body;
var nativeMatch = body.matches || body.matchesSelector || body.webkitMatchesSelector || body.mozMatchesSelector || body.msMatchesSelector;
matchesImpl = function matchesImpl(n, s) {
return nativeMatch.call(n, s);
};
}
return matchesImpl(node, selector);
}