Skip to content

Instantly share code, notes, and snippets.

@shadeglare
Created May 8, 2018 06:49
Show Gist options
  • Save shadeglare/1872982870c6046865b530846e8f7407 to your computer and use it in GitHub Desktop.
Save shadeglare/1872982870c6046865b530846e8f7407 to your computer and use it in GitHub Desktop.
Split a string into chunks with the specified size
function splitString (value: string, chunkSize: number) {
let re = new RegExp('.{1,' + chunkSize + '}', 'g');
return value.match(re);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment