Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
Array.prototype.locate = function( value, pos ) { pos = pos || []; for( var i = this.length; --i >= 0; ) { if (this[i] === value) { return pos.push(i); } else if ( Object.prototype.toString.call( this[i] ) === '[object Array]' ) { pos.push(i); if ( this[i].locate( value, pos ) ) { return pos; } else { pos.pop(); } } } return false; }
This paste will be private.
From the Design Piracy series on my blog: