it-tools/src/tools/sharepoint-decoder/sharepoint-decoder.service.ts
sharevb 46e2648ea5 feat(new tool): SharePoint Url Decoder
Decode sharepoint.com share urls

Fix #1482
2025-03-09 21:54:58 +01:00

9 lines
291 B
TypeScript

export function decodeSharePointsURL(sharePointsUrl: string) {
if (!sharePointsUrl.match(/\.sharepoint\.com/)) {
throw new Error('Invalid SharePoint URL provided');
}
const url = new URL(sharePointsUrl);
return `${url.protocol}//${url.hostname}${url.searchParams.get('id')}`;
}