mscabinet
Version:
```javascript import { Extract, CFFile } from 'cabinet'; import * as path from 'path'; import * as fs from 'fs';
22 lines • 545 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ExtractContext {
constructor(folder) {
this.dataCount = 0;
this.mszip_ = null;
this.folder_ = folder;
}
get folder() {
return this.folder_;
}
getMszip() {
if (!this.mszip_) {
this.mszip_ = {
dictionary: null
};
}
return this.mszip_;
}
}
exports.ExtractContext = ExtractContext;
//# sourceMappingURL=extract_context.js.map