/var/www/flurhymez/node_modules/jquery/src
NameSizeModeActions
ajax/-0755rm
attributes/-0755rm
core/-0755rm
css/-0755rm
data/-0755rm
deferred/-0755rm
deprecated/-0755rm
effects/-0755rm
event/-0755rm
exports/-0755rm
manipulation/-0755rm
queue/-0755rm
traversing/-0755rm
var/-0755rm
ajax.js228880644editdlrm
attributes.js2170644editdlrm
callbacks.js55520644editdlrm
core.js91830644editdlrm
css.js141650644editdlrm
data.js43210644editdlrm
deferred.js110070644editdlrm
deprecated.js22270644editdlrm
dimensions.js17560644editdlrm
effects.js174130644editdlrm
event.js244260644editdlrm
jquery.js6460644editdlrm
manipulation.js123180644editdlrm
offset.js68280644editdlrm
queue.js30910644editdlrm
selector-native.js64590644editdlrm
selector-sizzle.js4110644editdlrm
selector.js660644editdlrm
serialize.js32360644editdlrm
traversing.js46920644editdlrm
wrap.js14770644editdlrm
Edit: /var/www/flurhymez/node_modules/jquery/src/wrap.js (1477B)
define( [ "./core", "./var/isFunction", "./core/init", "./manipulation", // clone "./traversing" // parent, contents ], function( jQuery, isFunction ) { "use strict"; jQuery.fn.extend( { wrapAll: function( html ) { var wrap; if ( this[ 0 ] ) { if ( isFunction( html ) ) { html = html.call( this[ 0 ] ); } // The elements to wrap the target around wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); if ( this[ 0 ].parentNode ) { wrap.insertBefore( this[ 0 ] ); } wrap.map( function() { var elem = this; while ( elem.firstElementChild ) { elem = elem.firstElementChild; } return elem; } ).append( this ); } return this; }, wrapInner: function( html ) { if ( isFunction( html ) ) { return this.each( function( i ) { jQuery( this ).wrapInner( html.call( this, i ) ); } ); } return this.each( function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } } ); }, wrap: function( html ) { var htmlIsFunction = isFunction( html ); return this.each( function( i ) { jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); } ); }, unwrap: function( selector ) { this.parent( selector ).not( "body" ).each( function() { jQuery( this ).replaceWith( this.childNodes ); } ); return this; } } ); return jQuery; } );