www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit acdc36c9a1197e4ba4478f0a66d4db8f72e3c06e
parent 8d3e25dbfaf98b0726e2b0992c93f0cc7682bc86
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 25 Oct 2010 00:01:10 +0000

kill ZU.isInt


Diffstat:
Mchrome/content/zotero/xpcom/utilities.js | 15---------------
1 file changed, 0 insertions(+), 15 deletions(-)

diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js @@ -325,21 +325,6 @@ Zotero.Utilities.prototype.levenshtein = function (a, b) { /** - * Test if a string is an integer - * - * @deprecated Use isNaN(parseInt(x)) - * @type Boolean - */ -Zotero.Utilities.prototype.isInt = function(x) { - if(parseInt(x) == x) { - return true; - } - return false; -} - - - -/** * Test if an object is empty * * @param {Object}