@drewsonne/maya-dates
Version:
Typescript package to manipulate dates in the Maya Calendar
27 lines • 873 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var WildcardCoefficient = (function () {
function WildcardCoefficient() {
}
WildcardCoefficient.prototype.isWildcard = function () {
return true;
};
WildcardCoefficient.prototype.isIn = function (validHaabCoeffs) {
return true;
};
WildcardCoefficient.prototype.validate = function () {
return true;
};
WildcardCoefficient.prototype.toString = function () {
return '*';
};
WildcardCoefficient.prototype.equal = function (coefficient) {
return coefficient instanceof WildcardCoefficient;
};
WildcardCoefficient.prototype.match = function (coefficient) {
return true;
};
return WildcardCoefficient;
}());
exports.default = WildcardCoefficient;
//# sourceMappingURL=wildcardCoefficient.js.map