Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

implementation.browser.js 254B

1234567891011
  1. /* eslint no-negated-condition: 0, no-new-func: 0 */
  2. 'use strict';
  3. if (typeof self !== 'undefined') {
  4. module.exports = self;
  5. } else if (typeof window !== 'undefined') {
  6. module.exports = window;
  7. } else {
  8. module.exports = Function('return this')();
  9. }