1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-01-08 00:08:14 +01:00
audiobookshelf/server/libs/archiver/compress-commons/index.js

13 lines
492 B
JavaScript
Raw Permalink Normal View History

2022-07-07 03:12:14 +02:00
/**
* node-compress-commons
*
* Copyright (c) 2014 Chris Talkington, contributors.
* Licensed under the MIT license.
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/
module.exports = {
ArchiveEntry: require('./archivers/archive-entry'),
ZipArchiveEntry: require('./archivers/zip/zip-archive-entry'),
ArchiveOutputStream: require('./archivers/archive-output-stream'),
ZipArchiveOutputStream: require('./archivers/zip/zip-archive-output-stream')
};