This commit is contained in:
2026-03-01 13:15:10 +01:00
commit d3819b7069
974 changed files with 573469 additions and 0 deletions

3
services/api/node_modules/is-promise/index.mjs generated vendored Normal file
View File

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