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.

index.js 408B

12345678910111213141516171819
  1. 'use strict';
  2. var defineProperties = require('define-properties');
  3. var implementation = require('./implementation');
  4. var getPolyfill = require('./polyfill');
  5. var shim = require('./shim');
  6. var polyfill = getPolyfill();
  7. var getGlobal = function () { return polyfill; };
  8. defineProperties(getGlobal, {
  9. getPolyfill: getPolyfill,
  10. implementation: implementation,
  11. shim: shim
  12. });
  13. module.exports = getGlobal;