mirror of
https://github.com/jquery/jquery.git
synced 2026-02-13 05:45:28 -05:00
3
src/var/arr.js
Normal file
3
src/var/arr.js
Normal file
@@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return [];
|
||||
});
|
||||
3
src/var/class2type.js
Normal file
3
src/var/class2type.js
Normal file
@@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return {};
|
||||
});
|
||||
5
src/var/concat.js
Normal file
5
src/var/concat.js
Normal file
@@ -0,0 +1,5 @@
|
||||
define([
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
return arr.concat;
|
||||
});
|
||||
5
src/var/hasOwn.js
Normal file
5
src/var/hasOwn.js
Normal file
@@ -0,0 +1,5 @@
|
||||
define([
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
return class2type.hasOwnProperty;
|
||||
});
|
||||
5
src/var/indexOf.js
Normal file
5
src/var/indexOf.js
Normal file
@@ -0,0 +1,5 @@
|
||||
define([
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
return arr.indexOf;
|
||||
});
|
||||
3
src/var/pnum.js
Normal file
3
src/var/pnum.js
Normal file
@@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source;
|
||||
});
|
||||
5
src/var/push.js
Normal file
5
src/var/push.js
Normal file
@@ -0,0 +1,5 @@
|
||||
define([
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
return arr.push;
|
||||
});
|
||||
3
src/var/rnotwhite.js
Normal file
3
src/var/rnotwhite.js
Normal file
@@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return /\S+/g;
|
||||
});
|
||||
5
src/var/slice.js
Normal file
5
src/var/slice.js
Normal file
@@ -0,0 +1,5 @@
|
||||
define([
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
return arr.slice;
|
||||
});
|
||||
3
src/var/strundefined.js
Normal file
3
src/var/strundefined.js
Normal file
@@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return typeof undefined;
|
||||
});
|
||||
5
src/var/toString.js
Normal file
5
src/var/toString.js
Normal file
@@ -0,0 +1,5 @@
|
||||
define([
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
return class2type.toString;
|
||||
});
|
||||
3
src/var/trim.js
Normal file
3
src/var/trim.js
Normal file
@@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return "".trim;
|
||||
});
|
||||
Reference in New Issue
Block a user