16 lines
316 B
16 lines
316 B
11 months ago
|
import { compile } from 'path-to-regexp';
|
||
|
|
||
|
export function usePath() {
|
||
|
function getPath(path: string, data: Recordable): string {
|
||
|
if (path.includes(':')) {
|
||
|
const toPath = compile(path, { encode: encodeURIComponent });
|
||
|
return toPath(data);
|
||
|
}
|
||
|
return path;
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
getPath,
|
||
|
};
|
||
|
}
|