aboutsummaryrefslogtreecommitdiffstats
path: root/src/var
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-04-29 22:56:09 +0200
committerGitHub <noreply@github.com>2019-04-29 22:56:09 +0200
commitcf84696fd1d7fe314a11492606529b5a658ee9e3 (patch)
tree8fd4a45dd755e5f1215adbc82e7870727c8164e8 /src/var
parentbde53edcf4bd6c975d068eed4eb16c5ba09c1cff (diff)
downloadjquery-cf84696fd1d7fe314a11492606529b5a658ee9e3.tar.gz
jquery-cf84696fd1d7fe314a11492606529b5a658ee9e3.zip
Core: Drop support for IE <11, iOS <11, Firefox <65, Android Browser & PhantomJS
Also, update support comments format to match format described in: https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-69379197 with the change from: https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-448998379 (open-ended ranges end with `+`). Fixes gh-3950 Fixes gh-4299 Closes gh-4347
Diffstat (limited to 'src/var')
-rw-r--r--src/var/isFunction.js13
-rw-r--r--src/var/trim.js5
2 files changed, 5 insertions, 13 deletions
diff --git a/src/var/isFunction.js b/src/var/isFunction.js
deleted file mode 100644
index dad662e4f..000000000
--- a/src/var/isFunction.js
+++ /dev/null
@@ -1,13 +0,0 @@
-define( function() {
- "use strict";
-
- return function isFunction( obj ) {
-
- // Support: Chrome <=57, Firefox <=52
- // In some browsers, typeof returns "function" for HTML <object> elements
- // (i.e., `typeof document.createElement( "object" ) === "function"`).
- // We don't want to classify *any* DOM node as a function.
- return typeof obj === "function" && typeof obj.nodeType !== "number";
- };
-
-} );
diff --git a/src/var/trim.js b/src/var/trim.js
new file mode 100644
index 000000000..a5e75af36
--- /dev/null
+++ b/src/var/trim.js
@@ -0,0 +1,5 @@
+define( function() {
+ "use strict";
+
+ return "".trim;
+} );