All Downloads are FREE. Search and download functionalities are using the official Maven repository.

assets.lib.jquery.src.data.accepts.js Maven / Gradle / Ivy

The newest version!
define([
	"../core"
], function( jQuery ) {

/**
 * Determines whether an object can have data
 */
jQuery.acceptData = function( owner ) {
	// Accepts only:
	//  - Node
	//    - Node.ELEMENT_NODE
	//    - Node.DOCUMENT_NODE
	//  - Object
	//    - Any
	/* jshint -W018 */
	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
};

return jQuery.acceptData;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy