mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 17:17:59 +00:00
15 lines
326 B
JavaScript
15 lines
326 B
JavaScript
const fetch = require("node-fetch");
|
|
|
|
async function main(e = "", d = "") {
|
|
const lyrics = await fetch(
|
|
`https://p.poketube.fun/api/lyrics?query=${e}`
|
|
).then((res) => res.json());
|
|
|
|
if (lyrics == undefined) lyrics = "Lyrics not found";
|
|
if (lyrics != undefined) {
|
|
return lyrics;
|
|
}
|
|
}
|
|
|
|
module.exports = main;
|