1
0
Fork 0

si stava meglio quando si stava peggio

This commit is contained in:
boyska 2021-11-19 17:03:22 +01:00
parent 221430c017
commit 64b5446433

View file

@ -1,14 +1,4 @@
const fetch = require('isomorphic-unfetch')
module.exports = {
/**
*
* @param {String} baseURL to search for a radiomanifest
*/
get (baseURL, options = { shows: false, streaming: false, calendar: false }) {
return new RadioManifest(baseURL, options )
}
}
class RadioManifest {
constructor (baseURL, options) {
@ -158,3 +148,14 @@ function parseM3U(body) {
}
})
}
module.exports = {
get: get,
objs: {
Radio: Radio,
RadioStreaming: RadioStreaming
},
parsers: {
M3U: parseM3U,
}
}