mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-09-10 22:04:53 +02:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
export class SharingService {
|
|
/**
|
|
* Retrieve the universal link given a regular track link
|
|
* @param currentUrl
|
|
* @returns
|
|
*/
|
|
public static getUniversalLink(currentUrl: string): string {
|
|
return `${currentUrl}?u`;
|
|
}
|
|
}
|