adding initial fast-api

This commit is contained in:
2020-02-17 02:37:02 +00:00
commit 584d6bcc26
1975 changed files with 424591 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
define(function() {
return [];
});
@@ -0,0 +1,4 @@
define(function() {
// [[Class]] -> type pairs
return {};
});
+5
View File
@@ -0,0 +1,5 @@
define([
"./arr"
], function( arr ) {
return arr.concat;
});
+5
View File
@@ -0,0 +1,5 @@
define([
"./class2type"
], function( class2type ) {
return class2type.hasOwnProperty;
});
+5
View File
@@ -0,0 +1,5 @@
define([
"./arr"
], function( arr ) {
return arr.indexOf;
});
+3
View File
@@ -0,0 +1,3 @@
define(function() {
return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
});
+5
View File
@@ -0,0 +1,5 @@
define([
"./arr"
], function( arr ) {
return arr.push;
});
+3
View File
@@ -0,0 +1,3 @@
define(function() {
return (/\S+/g);
});
+5
View File
@@ -0,0 +1,5 @@
define([
"./arr"
], function( arr ) {
return arr.slice;
});
@@ -0,0 +1,3 @@
define(function() {
return typeof undefined;
});
+4
View File
@@ -0,0 +1,4 @@
define(function() {
// All support tests are defined in their respective modules.
return {};
});
+5
View File
@@ -0,0 +1,5 @@
define([
"./class2type"
], function( class2type ) {
return class2type.toString;
});