mirror of
https://github.com/codedread/bitjs
synced 2025-10-03 09:39:16 +02:00
33 lines
1,017 B
JavaScript
33 lines
1,017 B
JavaScript
/**
|
|
* archive.js
|
|
*
|
|
* Provides base functionality for unarchiving.
|
|
* DEPRECATED: Use decompress.js instead.
|
|
*
|
|
* Licensed under the MIT License
|
|
*
|
|
* Copyright(c) 2011 Google Inc.
|
|
*/
|
|
|
|
import { UnarchiveAppendEvent, UnarchiveErrorEvent, UnarchiveEvent, UnarchiveEventType,
|
|
UnarchiveExtractEvent, UnarchiveFinishEvent, UnarchiveInfoEvent,
|
|
UnarchiveProgressEvent, UnarchiveStartEvent, Unarchiver,
|
|
UnrarrerInternal, UntarrerInternal, UnzipperInternal,
|
|
getUnarchiverInternal } from './decompress-internal.js';
|
|
import { Unzipper, Unrarrer, Untarrer, getUnarchiver } from './decompress.js';
|
|
|
|
export {
|
|
UnarchiveAppendEvent,
|
|
UnarchiveErrorEvent,
|
|
UnarchiveEvent,
|
|
UnarchiveEventType,
|
|
UnarchiveExtractEvent,
|
|
UnarchiveFinishEvent,
|
|
UnarchiveInfoEvent,
|
|
UnarchiveProgressEvent,
|
|
UnarchiveStartEvent,
|
|
Unarchiver,
|
|
Unzipper, Unrarrer, Untarrer, getUnarchiver
|
|
}
|
|
|
|
console.error(`bitjs: Stop importing archive.js, this module will be removed. Import decompress.js instead.`);
|