Are you a regular stikked user? Signup so you can keep track of your pastes!
  1. /**
  2.  * ABC namespace.
  3.  * Relies on the Prototype javascript library.
  4.  */
  5. var ABC = {}; // global namespace
  6.  
  7.  
  8. Array.prototype.joinDouble = function (colDelim, rowDelim) {
  9.     return this.collect (
  10.         function ( row ) {
  11.             return row.join ( colDelim );
  12.         } )
  13.         .join ( rowDelim );
  14. }

Reply to "Untitled"

Here you can reply to the paste above

Create a snipurl

Make Private

Feeling clever? Set some advanced options.