first commit

This commit is contained in:
root
2026-03-14 09:49:00 +00:00
commit 708ff116e1
1958 changed files with 1718027 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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 );
};
} );

View File

@@ -0,0 +1,7 @@
define( [
"../Data"
], function( Data ) {
"use strict";
return new Data();
} );

View File

@@ -0,0 +1,7 @@
define( [
"../Data"
], function( Data ) {
"use strict";
return new Data();
} );