Skip to main content
Latest
File
export default function truncateSentence(s: string, k: number): string { return s.split(" ").slice(0, k).join(" ");}