Skip to content

Instantly share code, notes, and snippets.

@eamodeorubio
Created August 17, 2011 17:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eamodeorubio/1152052 to your computer and use it in GitHub Desktop.
Save eamodeorubio/1152052 to your computer and use it in GitHub Desktop.
Simple concatenator (GEJS)
var concatenator = function(arr) {
if(!arr || typeof(arr.join) != 'function')
return;
return arr.join();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment