Skip to content

Instantly share code, notes, and snippets.

@dan-coulter
Last active October 14, 2022 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dan-coulter/d82120410ce0a42c55350f54b80079b3 to your computer and use it in GitHub Desktop.
Save dan-coulter/d82120410ce0a42c55350f54b80079b3 to your computer and use it in GitHub Desktop.
export const truncate = (source: string, n: number): string => source.replace(new RegExp(`([a-z]{${n}})[a-z]+`, 'gi'), '$1');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment