compound-binary-file-js
Version:
This is an implementation of [Compound Binary File v.3](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-cfb/53989ce4-7b05-4f8d-829b-d08d6148375b) \ Allows reading existing files, creation of the/write operation
24 lines • 913 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var FATtoDIFATFacade = /** @class */ (function () {
function FATtoDIFATFacade() {
}
FATtoDIFATFacade.prototype.setDifat = function (difat) {
this.difat = difat;
};
FATtoDIFATFacade.prototype.setFat = function (fat) {
this.fat = fat;
};
FATtoDIFATFacade.prototype.getFatSectorChain = function () {
return this.difat.getFatSectorChain();
};
FATtoDIFATFacade.prototype.registerFatSectorInDIFAT = function (sectorPosition) {
this.difat.registerFATSector(sectorPosition);
};
FATtoDIFATFacade.prototype.registerDifatSectorInFAT = function (sectorPosition) {
this.fat.registerDifatSector(sectorPosition);
};
return FATtoDIFATFacade;
}());
exports.FATtoDIFATFacade = FATtoDIFATFacade;
//# sourceMappingURL=FATtoDIFATFacade.js.map
;