UNPKG

212 BJavaScriptView Raw
1export default function pathToId(path) {
2 const match = (path || '').match(/^\/story\/(.+)/);
3
4 if (!match) {
5 throw new Error(`Invalid path '${path}', must start with '/story/'`);
6 }
7
8 return match[1];
9}
\No newline at end of file