@automattic/social-previews
Version:
A suite of components to generate previews for a post for both social and search engines.
9 lines • 495 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.threadsTitle = exports.CAPTION_MAX_CHARS = void 0;
const helpers_1 = require("../helpers");
const TITLE_LENGTH = 120;
exports.CAPTION_MAX_CHARS = 500;
const threadsTitle = (text) => (0, helpers_1.firstValid)((0, helpers_1.shortEnough)(TITLE_LENGTH), (0, helpers_1.hardTruncation)(TITLE_LENGTH))((0, helpers_1.stripHtmlTags)(text)) || '';
exports.threadsTitle = threadsTitle;
//# sourceMappingURL=helpers.js.map