Code coverage report for src\traversing.js

Statements: 100% (4 / 4)      Branches: 100% (2 / 2)      Functions: 100% (1 / 1)      Lines: 100% (4 / 4)      Ignored: none     

All files » src/ » traversing.js
1 2 3 4 5 6 71   1 1 1    
var oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack;
 
jQuery.fn.andSelf = function() {
	migrateWarn( "jQuery.fn.andSelf() replaced by jQuery.fn.addBack()" );
	return oldSelf.apply( this, arguments );
};