"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ellipsisIt = void 0; var text_1 = require("./text"); function ellipsisIt(node, w, suffix) { if (suffix === void 0) { suffix = '...'; } (0, text_1.applyToText)(node, { wordWrap: true, wordWrapWidth: w, maxLines: 1, textOverflow: suffix }); } exports.ellipsisIt = ellipsisIt; //# sourceMappingURL=ellipsis.js.map