mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:41:06 +08:00
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
export default function pathToId(path: string) {
|
|
const match = (path || '').match(/^\/story\/(.+)/);
|
|
if (!match) {
|
|
throw new Error(`Invalid path '${path}', must start with '/story/'`);
|
|
}
|
|
return match[1];
|
|
}
|