1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- if (typeof b !== "function" && b !== null)
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.CommonMnMixin = void 0;
- function CommonMnMixin(Base) {
- return (function (_super) {
- __extends(class_1, _super);
- function class_1() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- class_1.prototype.remapChars = function (chars) {
- if (chars.length) {
- var text = this.font.getRemappedChar('mn', chars[0]);
- if (text) {
- var c = this.unicodeChars(text, this.variant);
- if (c.length === 1) {
- chars[0] = c[0];
- }
- else {
- chars = c.concat(chars.slice(1));
- }
- }
- }
- return chars;
- };
- return class_1;
- }(Base));
- }
- exports.CommonMnMixin = CommonMnMixin;
- //# sourceMappingURL=mn.js.map
|