equanimityhow
05/26/2023, 8:44 PMWallacy
05/27/2023, 2:42 AMIann
05/27/2023, 2:43 AMIann
05/27/2023, 2:43 AMWallacy
05/27/2023, 2:43 AMIann
05/27/2023, 2:44 AMIann
05/27/2023, 2:44 AMIann
05/27/2023, 2:44 AMWallacy
05/27/2023, 2:45 AMawait caches.open('custom:cache')HardAtWork
05/27/2023, 5:10 AMsathoro
05/27/2023, 7:49 AMzehawk
05/27/2023, 11:32 AMzehawk
05/27/2023, 11:37 AMsdan
05/27/2023, 12:30 PMthis.userssathoro
05/27/2023, 1:29 PMsdan
05/27/2023, 1:32 PMzegevlier
05/27/2023, 1:36 PMsdan
05/27/2023, 1:36 PMUnsmart | Tech debt
05/27/2023, 2:53 PMAdvany
05/27/2023, 3:02 PMzehawk
05/28/2023, 10:26 AMUnsmart | Tech debt
05/28/2023, 2:54 PMzehawk
05/28/2023, 8:15 PMHardAtWork
05/28/2023, 9:21 PMmackenzie
12/21/2023, 5:01 PMLuke Greenleaf
12/30/2023, 11:55 PMfetch: (request) => router
    .handle(request)
    // transform unformed responses
    .then(json)
    // add CORS headers to all requests including errors
    .then(corsify)
    // catch any errors
    .catch(error)fetch: (request, env, ctx) => router
    .handle(request, env, ctx)
    // transform unformed responses
    .then(json)
    // add CORS headers to all requests including errors
    .then(corsify)
    // catch any errors
    .catch(error)async fetch(request, env, ctx) {
   await router
      .handle(request)
      // transform unformed responses
      .then(json)
      // add CORS headers to all requests including errors
      .then(corsify)
      // catch any errors
      .catch(error)
}alexander9602
01/09/2024, 8:49 PMMilan_
01/10/2024, 3:11 PMwebSocketX()this.state.getWebSockets()