Spaces:
Runtime error
Runtime error
File size: 318 Bytes
b2d7d99 |
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
} |