next.js/test/e2e/app-dir/crypto-globally-available/app/handler/route.ts
route.ts10 lines192 B
export function GET() {
  return new Response(
    typeof globalThis.crypto === 'object'
      ? 'crypto is available'
      : 'crypto is not available'
  )
}

export const runtime = 'nodejs'
Quest for Codev2.0.0
/
SIGN IN