vookav2 / songlyrics

Find song lyrics just enter the song title
MIT License
6 stars 2 forks source link

TypeError: getLyrics is not a function #13

Closed GlxryX closed 2 years ago

GlxryX commented 2 years ago
const songlyrics = require("songlyrics");
const lyrics = await songlyrics('one more light')

Not sure why I'm getting this error because I believe I've set up the code the same as the Readme

mr687 commented 2 years ago

Hi @GlxryX , please try this code instead.

const songlyrics = require("songlyrics").default
const lyrics = await songlyrics('one more light')