@automattic/social-previews
Version:
A suite of components to generate previews for a post for both social and search engines.
5 lines • 318 B
JavaScript
import { firstValid, hardTruncation, shortEnough, stripHtmlTags } from '../helpers';
const TITLE_LENGTH = 120;
export const CAPTION_MAX_CHARS = 500;
export const threadsTitle = (text) => firstValid(shortEnough(TITLE_LENGTH), hardTruncation(TITLE_LENGTH))(stripHtmlTags(text)) || '';
//# sourceMappingURL=helpers.js.map