using part of gentelella

This commit is contained in:
frankknoll
2022-03-29 19:01:38 +02:00
parent 14b30f18c4
commit 73cddec687
361 changed files with 64607 additions and 438 deletions

View File

@@ -0,0 +1,3 @@
define( function() {
return [];
} );

View File

@@ -0,0 +1,5 @@
define( function() {
// [[Class]] -> type pairs
return {};
} );

View File

@@ -0,0 +1,5 @@
define( [
"./arr"
], function( arr ) {
return arr.concat;
} );

View File

@@ -0,0 +1,3 @@
define( function() {
return window.document;
} );

View File

@@ -0,0 +1,5 @@
define( [
"./document"
], function( document ) {
return document.documentElement;
} );

View File

@@ -0,0 +1,5 @@
define( [
"./class2type"
], function( class2type ) {
return class2type.hasOwnProperty;
} );

View File

@@ -0,0 +1,5 @@
define( [
"./arr"
], function( arr ) {
return arr.indexOf;
} );

View File

@@ -0,0 +1,3 @@
define( function() {
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
} );

View File

@@ -0,0 +1,5 @@
define( [
"./arr"
], function( arr ) {
return arr.push;
} );

View File

@@ -0,0 +1,7 @@
define( [
"../var/pnum"
], function( pnum ) {
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
} );

View File

@@ -0,0 +1,3 @@
define( function() {
return ( /\S+/g );
} );

View File

@@ -0,0 +1,5 @@
define( [
"./arr"
], function( arr ) {
return arr.slice;
} );

View File

@@ -0,0 +1,5 @@
define( function() {
// All support tests are defined in their respective modules.
return {};
} );

View File

@@ -0,0 +1,5 @@
define( [
"./class2type"
], function( class2type ) {
return class2type.toString;
} );