Skip to content

Instantly share code, notes, and snippets.

@devth
Last active August 29, 2015 13:57
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 devth/9608983 to your computer and use it in GitHub Desktop.
Save devth/9608983 to your computer and use it in GitHub Desktop.
function insertEvery(str, xChars, strToInsert) {
var newStr = "", times = Math.ceil(str.length / xChars);
for (var i = 0; i < times; i++) {
newStr += str.substr(i * xChars, xChars) + strToInsert;
}
return newStr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment