Skip to content

Instantly share code, notes, and snippets.

@rjpkuyper
Created February 17, 2023 06:06
Show Gist options
  • Save rjpkuyper/03256988c6a5b502e097bfa571adb886 to your computer and use it in GitHub Desktop.
Save rjpkuyper/03256988c6a5b502e097bfa571adb886 to your computer and use it in GitHub Desktop.
An updated version of the original
export enum Paths {
PRODUCTS = '/products'
}
// pass the dependency, simply as optional variable
export const createUrl = (path: Paths, baseUrl = process.env.BASE_URL) => `${url}${path}`
export const productsUrl = createUrl(Paths.PRODUCTS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment