mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
import Truncate = require("html-truncate");
|
|
|
|
Truncate('hello world', 4);
|
|
|
|
Truncate('<p><div>hello world</div></p>', 4, {
|
|
keepImageTag: true,
|
|
ellipsis: true
|
|
});
|
|
|
|
Truncate('<p><div>hello world</div></p>', 6, {
|
|
keepImageTag: false,
|
|
ellipsis: '---'
|
|
});
|