UNPKG

scrivito

Version:

Scrivito is a professional, yet easy to use SaaS Enterprise Content Management Service, built for digital agencies and medium to large businesses. It is completely maintenance-free, cost-effective, and has unprecedented performance and security.

7 lines (6 loc) 226 B
export function extractTitleAndDescription( text: string ): [string, string | undefined] { const match = /^([\s\S]+?[.!?])\s+([\s\S]+)/.exec(text); return match ? [match[1], match[2] || undefined] : [text, undefined]; }