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.

normal-opts.js 151B

1234567891011
  1. "use strict";
  2. function normalOpts (opts, syntax) {
  3. if (!opts) {
  4. opts = {};
  5. }
  6. opts.syntax = syntax;
  7. return opts;
  8. }
  9. module.exports = normalOpts;