UNPKG

@sls-next/core

Version:
9 lines (8 loc) 284 B
export const isDynamicRoute = (route) => { // Identify /[param]/ in route string return /\/\[[^\/]+?](?=\/|$)/.test(route); }; export const isOptionalCatchAllRoute = (route) => { // Identify /[[param]]/ in route string return /\/\[\[[^\/]+?]](?=\/|$)/.test(route); };