Update of multiple frontend libs.

This commit is contained in:
baldo 2017-05-13 13:25:33 +02:00
commit a9c6ddc03b
276 changed files with 41257 additions and 19300 deletions

View file

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

View file

@ -1,3 +1,5 @@
define(function() {
define( function() {
"use strict";
return [];
});
} );

View file

@ -1,4 +1,6 @@
define(function() {
define( function() {
"use strict";
// [[Class]] -> type pairs
return {};
});
} );

View file

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

View file

@ -0,0 +1,5 @@
define( function() {
"use strict";
return window.document;
} );

View file

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

View file

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

View file

@ -0,0 +1,5 @@
define( function() {
"use strict";
return Object.getPrototypeOf;
} );

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,8 @@
define( function() {
"use strict";
// Only count HTML whitespace
// Other whitespace should count in values
// https://html.spec.whatwg.org/multipage/infrastructure.html#space-character
return ( /[^\x20\t\r\n\f]+/g );
} );

View file

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

View file

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

View file

@ -1,3 +0,0 @@
define(function() {
return typeof undefined;
});

View file

@ -1,4 +1,6 @@
define(function() {
define( function() {
"use strict";
// All support tests are defined in their respective modules.
return {};
});
} );

View file

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