react-code-dataset / next.js /packages /next /src /server /lib /match-next-data-pathname.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { getPathMatch } from '../../shared/lib/router/utils/path-match'
const matcher = getPathMatch('/_next/data/:path*')
export function matchNextDataPathname(pathname: string | null | undefined) {
if (typeof pathname !== 'string') return false
return matcher(pathname)
}