Spaces:
Paused
Paused
File size: 318 Bytes
5b3c62d |
1 2 3 4 5 6 7 8 9 10 |
import { IncomingHttpHeaders } from "node:http"
export const hasValidAuthorization = (headers: IncomingHttpHeaders) => {
const [_, token] = `${headers.authorization || ""}`.split(" ")
if (typeof token === "string" && token.trim() === process.env.SECRET_ACCESS_TOKEN.trim()) {
return true
}
return false
} |