UNPKG

262 BJavaScriptView Raw
1import { URL } from 'url';
2export const constructUrl = (storybookUrl, id) => {
3 const url = new URL(storybookUrl);
4 url.pathname = url.pathname.replace(/\/$/, '').concat('/iframe.html');
5 url.searchParams.append('id', id);
6 return url.toString();
7};