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.

compress-commons.js 492B

12345678910111213
  1. /**
  2. * node-compress-commons
  3. *
  4. * Copyright (c) 2014 Chris Talkington, contributors.
  5. * Licensed under the MIT license.
  6. * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
  7. */
  8. module.exports = {
  9. ArchiveEntry: require('./archivers/archive-entry'),
  10. ZipArchiveEntry: require('./archivers/zip/zip-archive-entry'),
  11. ArchiveOutputStream: require('./archivers/archive-output-stream'),
  12. ZipArchiveOutputStream: require('./archivers/zip/zip-archive-output-stream')
  13. };