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

package.src.data.var.acceptData.js Maven / Gradle / Ivy

The newest version!
define( function() {

"use strict";

/**
 * Determines whether an object can have data
 */
return function( owner ) {

	// Accepts only:
	//  - Node
	//    - Node.ELEMENT_NODE
	//    - Node.DOCUMENT_NODE
	//  - Object
	//    - Any
	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
};

} );




© 2015 - 2024 Weber Informatics LLC | Privacy Policy