mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-19 07:12:46 +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: '---'
|
|
});
|