commerce/site/lib/get-slug.ts
Matthew Mulford 470c40fd53 shopify
2022-10-08 14:37:47 -05:00

6 lines
186 B
TypeScript

// Remove trailing and leading slash, usually included in nodes
// returned by the BigCommerce API
const getSlug = (path: string) => path.replace(/^\/|\/$/g, '')
export default getSlug