FRE-651: CEO coordination notes for founder bio/headshot assets

This commit is contained in:
2026-04-26 07:41:45 -04:00
parent 3d5ff8650c
commit 5f4eb60a98
476 changed files with 67971 additions and 125 deletions

25
node_modules/@clerk/backend/dist/chunk-P263NW7Z.mjs generated vendored Normal file
View File

@@ -0,0 +1,25 @@
// src/jwt/legacyReturn.ts
function withLegacyReturn(cb) {
return async (...args) => {
const { data, errors } = await cb(...args);
if (errors) {
throw errors[0];
}
return data;
};
}
function withLegacySyncReturn(cb) {
return (...args) => {
const { data, errors } = cb(...args);
if (errors) {
throw errors[0];
}
return data;
};
}
export {
withLegacyReturn,
withLegacySyncReturn
};
//# sourceMappingURL=chunk-P263NW7Z.mjs.map