File size: 260 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import type { ServerRuntime } from '../types'
import { SERVER_RUNTIME } from './constants'
export function isEdgeRuntime(value?: string): value is ServerRuntime {
return (
value === SERVER_RUNTIME.experimentalEdge || value === SERVER_RUNTIME.edge
)
}
|