stremio-web/src/common/toPath.ts
2026-05-22 21:29:05 +03:00

5 lines
159 B
TypeScript

// Copyright (C) 2017-2026 Smart code 203358507
const toPath = (link: string): string => link.startsWith('#') ? link.slice(1) : link;
export default toPath;