🚀 Auto-deploy: VaultUI transformado em Node.js com sincronização automática de segredos

This commit is contained in:
2026-03-25 11:39:22 +00:00
parent 468222219b
commit 94609aa11b
591 changed files with 62219 additions and 1984 deletions

6
node_modules/is-promise/index.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
module.exports = isPromise;
module.exports.default = isPromise;
function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}