updated sys and created publi

This commit is contained in:
Bachir Soussi Chiadmi
2017-12-21 18:09:49 +01:00
parent 2a6e2ff863
commit cefd1c2ad0
9509 changed files with 744901 additions and 32263 deletions
@@ -0,0 +1,7 @@
define( [
"./fnToString"
], function( fnToString ) {
"use strict";
return fnToString.call( Object );
} );
+5
View File
@@ -0,0 +1,5 @@
define( function() {
"use strict";
return [];
} );
+6
View File
@@ -0,0 +1,6 @@
define( function() {
"use strict";
// [[Class]] -> type pairs
return {};
} );
+7
View File
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.concat;
} );
+5
View File
@@ -0,0 +1,5 @@
define( function() {
"use strict";
return window.document;
} );
@@ -0,0 +1,7 @@
define( [
"./document"
], function( document ) {
"use strict";
return document.documentElement;
} );
+7
View File
@@ -0,0 +1,7 @@
define( [
"./hasOwn"
], function( hasOwn ) {
"use strict";
return hasOwn.toString;
} );
+5
View File
@@ -0,0 +1,5 @@
define( function() {
"use strict";
return Object.getPrototypeOf;
} );
+7
View File
@@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.hasOwnProperty;
} );
+7
View File
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.indexOf;
} );
+5
View File
@@ -0,0 +1,5 @@
define( function() {
"use strict";
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
} );
+7
View File
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.push;
} );
+9
View File
@@ -0,0 +1,9 @@
define( [
"../var/pnum"
], function( pnum ) {
"use strict";
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
} );
+5
View File
@@ -0,0 +1,5 @@
define( function() {
"use strict";
return ( /\S+/g );
} );
+7
View File
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.slice;
} );
+6
View File
@@ -0,0 +1,6 @@
define( function() {
"use strict";
// All support tests are defined in their respective modules.
return {};
} );
+7
View File
@@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.toString;
} );