Closed GoogleCodeExporter closed 8 years ago
I added this line before 442 and I worked for me.
if (numberString.constructor === Number) numberString = numberString.toString();
so
if (numberString.constructor === Number) numberString = numberString.toString();
// now we need to convert it into a number
while (numberString.indexOf(group)>-1)
Original comment by minkb...@gmail.com
on 5 May 2012 at 7:53
ref:
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-ty
pe-in-javascript
Original comment by minkb...@gmail.com
on 5 May 2012 at 7:53
I'm guessing that a string is not being passed to the method in this case but a
number. I'd have no idea why you would be parsing a number object into a number
object, this method is string -> number conversion only.
Original comment by apar...@gmail.com
on 18 Oct 2013 at 12:31
Original issue reported on code.google.com by
minkb...@gmail.com
on 5 May 2012 at 7:36