You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
374 B
9 lines
374 B
|
4 months ago
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.ellipsisIt = ellipsisIt;
|
||
|
|
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 });
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=ellipsis.js.map
|