/home/techb158/workloadmatch.com/bower_components/jquery/src
NameSizeModeActions
ajax/-0777rm
attributes/-0777rm
core/-0777rm
css/-0777rm
data/-0777rm
deferred/-0777rm
effects/-0777rm
event/-0777rm
exports/-0777rm
manipulation/-0777rm
queue/-0777rm
traversing/-0777rm
var/-0777rm
.eslintrc.json600777editdlrm
ajax.js222540777editdlrm
attributes.js2170777editdlrm
callbacks.js55050777editdlrm
core.js111970777editdlrm
css.js116840777editdlrm
data.js42960777editdlrm
deferred.js108620777editdlrm
deprecated.js8010777editdlrm
dimensions.js17290777editdlrm
effects.js173980777editdlrm
event.js194150777editdlrm
jquery.js6400777editdlrm
manipulation.js125060777editdlrm
offset.js62660777editdlrm
queue.js30910777editdlrm
selector-native.js63940777editdlrm
selector-sizzle.js4110777editdlrm
selector.js660777editdlrm
serialize.js31700777editdlrm
traversing.js45490777editdlrm
wrap.js14570777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/jquery/src/wrap.js (1457B)
define( [ "./core", "./core/init", "./manipulation", // clone "./traversing" // parent, contents ], function( jQuery ) { "use strict"; jQuery.fn.extend( { wrapAll: function( html ) { var wrap; if ( this[ 0 ] ) { if ( jQuery.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 ( jQuery.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 isFunction = jQuery.isFunction( html ); return this.each( function( i ) { jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html ); } ); }, unwrap: function( selector ) { this.parent( selector ).not( "body" ).each( function() { jQuery( this ).replaceWith( this.childNodes ); } ); return this; } } ); return jQuery; } );