index.js 120 B

1234567
  1. export function getPageType (type) {
  2. if (type === 'catalog') {
  3. return 'category'
  4. } else {
  5. return type
  6. }
  7. }