Skip to content

Instantly share code, notes, and snippets.

@jena-th
Created May 24, 2012 08:47
Show Gist options
  • Select an option

  • Save jena-th/2780271 to your computer and use it in GitHub Desktop.

Select an option

Save jena-th/2780271 to your computer and use it in GitHub Desktop.
Explode a String into small chunks
chunkize = (string, n = 2)->
string.match RegExp '.{1,'+n+'}','g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment