Sha256: cff663e0dce1b9ee61a457c3c5431ab81c2b820c17756ed667b86d021ddff1f1
Contents?: true
Size: 481 Bytes
Versions: 24
Compression:
Stored size: 481 Bytes
Contents
//>>excludeStart("exclude", pragmas.exclude); define([ "shoestring" ], function(){ //>>excludeEnd("exclude"); /** * Clone and return the current set of nodes into a new `shoestring` object. * * @return shoestring * @this shoestring */ shoestring.fn.clone = function() { var ret = []; this.each(function() { ret.push( this.cloneNode( true ) ); }); return shoestring( ret ); }; //>>excludeStart("exclude", pragmas.exclude); }); //>>excludeEnd("exclude");
Version data entries
24 entries across 24 versions & 1 rubygems