diff options
author | Jason Bedard <jason+github@jbedard.ca> | 2017-12-12 21:51:49 -0800 |
---|---|---|
committer | Jason Bedard <jason+github@jbedard.ca> | 2018-01-15 20:50:02 -0800 |
commit | c4494d4abc84d368d6597889ab45fc07466f8f26 (patch) | |
tree | ef34afb4d08cbd9dcf8ea7fc65060aeddc6b322c /src/core.js | |
parent | d7237896c79a5a10d85fcdec199c5657a469a92b (diff) | |
download | jquery-c4494d4abc84d368d6597889ab45fc07466f8f26.tar.gz jquery-c4494d4abc84d368d6597889ab45fc07466f8f26.zip |
Core: deprecate jQuery.isNumeric
Fixes gh-2960
Closes gh-3888
Diffstat (limited to 'src/core.js')
-rw-r--r-- | src/core.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/core.js b/src/core.js index 5916b03aa..8ffc4e516 100644 --- a/src/core.js +++ b/src/core.js @@ -204,20 +204,6 @@ jQuery.extend( { noop: function() {}, - isNumeric: function( obj ) { - - // As of jQuery 3.0, isNumeric is limited to - // strings and numbers (primitives or objects) - // that can be coerced to finite numbers (gh-2662) - var type = jQuery.type( obj ); - return ( type === "number" || type === "string" ) && - - // parseFloat NaNs numeric-cast false positives ("") - // ...but misinterprets leading-number strings, particularly hex literals ("0x...") - // subtraction forces infinities to NaN - !isNaN( obj - parseFloat( obj ) ); - }, - isPlainObject: function( obj ) { var proto, Ctor; |