DefinitelyTyped/types/html-truncate/html-truncate-tests.ts
2019-03-06 22:09:47 +11:00

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: '---'
});