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.

archive-entry.js 466B

12345678910111213141516
  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. var ArchiveEntry = module.exports = function() {};
  9. ArchiveEntry.prototype.getName = function() {};
  10. ArchiveEntry.prototype.getSize = function() {};
  11. ArchiveEntry.prototype.getLastModifiedDate = function() {};
  12. ArchiveEntry.prototype.isDirectory = function() {};