Comparing version 0.1.4 to 0.1.5
/*! | ||
isnumeric (v0.1.4) 02-01-2015 | ||
isnumeric (v0.1.5) 24-02-2015 | ||
(c) Lee Crossley <leee@hotmail.co.uk> (http://ilee.co.uk/) | ||
*/ | ||
var isNumeric=function(a){return a="string"==typeof a?a.replace(",","."):a,!isNaN(parseFloat(a))&&isFinite(a)&&"[object array]"!==Object.prototype.toString.call(a).toLowerCase()};"undefined"!=typeof exports&&("undefined"!=typeof module&&module.exports&&(exports=module.exports=isNumeric),exports.isNumeric=isNumeric); |
@@ -6,3 +6,3 @@ { | ||
"homepage": "http://ilee.co.uk", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"main": "isNumeric.min.js", | ||
@@ -25,9 +25,9 @@ "keywords": [ | ||
"devDependencies": { | ||
"grunt": "~0.4.x", | ||
"grunt-cli": "~0.1.x", | ||
"grunt-contrib-jasmine": "~0.8.x", | ||
"grunt-contrib-jshint": "~0.10.x", | ||
"grunt-contrib-uglify": "~0.7.x", | ||
"grunt-contrib-watch": "~0.6.x" | ||
"grunt": "^0.4.5", | ||
"grunt-cli": "^0.1.0", | ||
"grunt-contrib-jasmine": "^0.8.0", | ||
"grunt-contrib-jshint": "^0.11.0", | ||
"grunt-contrib-uglify": "^0.8.0", | ||
"grunt-contrib-watch": "^0.6.0" | ||
} | ||
} |
209293