All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.build.cjs.vercelWaitUntil.js.map Maven / Gradle / Ivy

There is a newer version: 8.38.0
Show newest version
{"version":3,"file":"vercelWaitUntil.js","sources":["../../src/vercelWaitUntil.ts"],"sourcesContent":["import { GLOBAL_OBJ } from './worldwide';\n\ninterface VercelRequestContextGlobal {\n  get?(): {\n    waitUntil?: (task: Promise) => void;\n  };\n}\n\n/**\n * Function that delays closing of a Vercel lambda until the provided promise is resolved.\n *\n * Vendored from https://www.npmjs.com/package/@vercel/functions\n */\nexport function vercelWaitUntil(task: Promise): void {\n  const vercelRequestContextGlobal: VercelRequestContextGlobal | undefined =\n    // @ts-expect-error This is not typed\n    GLOBAL_OBJ[Symbol.for('@vercel/request-context')];\n\n  const ctx =\n    vercelRequestContextGlobal && vercelRequestContextGlobal.get && vercelRequestContextGlobal.get()\n      ? vercelRequestContextGlobal.get()\n      : {};\n\n  if (ctx && ctx.waitUntil) {\n    ctx.waitUntil(task);\n  }\n}\n"],"names":["GLOBAL_OBJ"],"mappings":";;;;AAQA;AACA;AACA;AACA;AACA;AACO,SAAS,eAAe,CAAC,IAAI,EAA0B;AAC9D,EAAE,MAAM,0BAA0B;AAClC;AACA,IAAIA,oBAAU,CAAC,MAAM,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAC,CAAA;AACrD;AACA,EAAE,MAAM,GAAI;AACZ,IAAI,0BAAA,IAA8B,0BAA0B,CAAC,OAAO,0BAA0B,CAAC,GAAG,EAAC;AACnG,QAAQ,0BAA0B,CAAC,GAAG,EAAC;AACvC,QAAQ,EAAE,CAAA;AACV;AACA,EAAE,IAAI,GAAA,IAAO,GAAG,CAAC,SAAS,EAAE;AAC5B,IAAI,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,CAAA;AACvB,GAAE;AACF;;;;"}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy