change ref docs url format from 1_5 to v1.5
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./fnToString"
|
||||
], function( fnToString ) {
|
||||
"use strict";
|
||||
|
||||
return fnToString.call( Object );
|
||||
} );
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return [];
|
||||
} );
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
// [[Class]] -> type pairs
|
||||
return {};
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.concat;
|
||||
} );
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return window.document;
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./document"
|
||||
], function( document ) {
|
||||
"use strict";
|
||||
|
||||
return document.documentElement;
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./hasOwn"
|
||||
], function( hasOwn ) {
|
||||
"use strict";
|
||||
|
||||
return hasOwn.toString;
|
||||
} );
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return Object.getPrototypeOf;
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
"use strict";
|
||||
|
||||
return class2type.hasOwnProperty;
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.indexOf;
|
||||
} );
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.push;
|
||||
} );
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
define( [
|
||||
"../var/pnum"
|
||||
], function( pnum ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
|
||||
|
||||
} );
|
||||
+8
@@ -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 );
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.slice;
|
||||
} );
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
// All support tests are defined in their respective modules.
|
||||
return {};
|
||||
} );
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
"use strict";
|
||||
|
||||
return class2type.toString;
|
||||
} );
|
||||
Reference in New Issue
Block a user