UNPKG

spotify-now

Version:
9 lines (6 loc) 253 B
import spotifyApi from "../spotifyApi/provider"; export async function getCurrentTrackId() { const currentPlayingResult = await spotifyApi.getMyCurrentPlayingTrack(); const trackId = currentPlayingResult.body.item?.id; return trackId; }