archive-entry.js 466 B

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() {};