UNPKG

mediamonkeyserver

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