UNPKG

next

Version:

The React Framework

22 lines (21 loc) 664 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 Object.defineProperty(new Error('Unknown dynamic param type'), "__NEXT_ERROR_CODE", { value: "E378", enumerable: false, configurable: true }); } return short; } //# sourceMappingURL=get-short-dynamic-param-type.js.map