Skip to content

Instantly share code, notes, and snippets.

@kane-thornwyrd
Created May 24, 2012 08:47
Show Gist options
  • Save kane-thornwyrd/2780271 to your computer and use it in GitHub Desktop.
Save kane-thornwyrd/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