UNPKG

next

Version:

The React Framework

18 lines (17 loc) 518 B
export const dynamicParamTypes = { catchall: 'c', 'catchall-intercepted': 'ci', 'optional-catchall': 'oc', dynamic: 'd', 'dynamic-intercepted': 'di' }; /** * Shorten the dynamic param in order to make it smaller when transmitted to the browser. */ export function getShortDynamicParamType(type) { const short = dynamicParamTypes[type]; if (!short) { throw new Error('Unknown dynamic param type'); } return short; } //# sourceMappingURL=get-short-dynamic-param-type.js.map