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 322B

1234567891011121314
  1. var DomUtils = module.exports;
  2. [
  3. require("./lib/stringify"),
  4. require("./lib/traversal"),
  5. require("./lib/manipulation"),
  6. require("./lib/querying"),
  7. require("./lib/legacy"),
  8. require("./lib/helpers")
  9. ].forEach(function(ext){
  10. Object.keys(ext).forEach(function(key){
  11. DomUtils[key] = ext[key].bind(DomUtils);
  12. });
  13. });