| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1× 1× 1× 1× 1× 25× 25× 1× 1× | define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var TtfTableInfo = (function () {
function TtfTableInfo() {
}
Object.defineProperty(TtfTableInfo.prototype, "empty", {
get: function () {
var empty = (this.offset === this.length && this.length === this.checksum && this.checksum === 0);
return empty;
},
enumerable: true,
configurable: true
});
return TtfTableInfo;
}());
exports.TtfTableInfo = TtfTableInfo;
});
|