UNPKG

mediamonkeyserver

Version:
19 lines (13 loc) 380 B
/*jslint node: true, esversion: 6 */ "use strict"; const Container = require('./object.container'); const _UPNP_CLASS = Container.UPNP_CLASS + ".audioContainer"; class AudioContainer extends Container { get name() { return AudioContainer.UPNP_CLASS; } static get UPNP_CLASS() { return _UPNP_CLASS; } } module.exports = AudioContainer;