next.js / packages /next /src /server /normalizers /wrap-normalizer-fn.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import type { Normalizer } from './normalizer'
export function wrapNormalizerFn(fn: (pathname: string) => string): Normalizer {
return { normalize: fn }
}