17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
|
import RouteRecognizer from 'route-recognizer';
|
||
|
|
||
|
const {
|
||
|
Normalizer: { normalizePath, encodePathSegment },
|
||
|
} = RouteRecognizer;
|
||
|
|
||
|
export function encodePath(path) {
|
||
|
return path
|
||
|
? path
|
||
|
.split('/')
|
||
|
.map(encodePathSegment)
|
||
|
.join('/')
|
||
|
: path;
|
||
|
}
|
||
|
|
||
|
export { normalizePath, encodePathSegment };
|