all files / graphics/fonts/ ttf-table-info.js

100% Statements 9/9
100% Branches 3/3
100% Functions 4/4
100% Lines 9/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19       25× 25×              
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;
});