summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
authorGubolin <gubolin@fantasymail.de>2015-03-01 09:42:02 +0100
committerGubolin <gubolin@fantasymail.de>2015-03-01 09:42:02 +0100
commit63234d8858b20a5faf7b1dee696e0db332360d2d (patch)
treef5a551dba9e23b24a443e73694896c5db17324d8 /threads.js
parent438fe4e3619c5dc52ca625a1e16048b30cf16c7d (diff)
parentb1d78532557371dfc740c078c76c13e8e0f66896 (diff)
downloadsnap-63234d8858b20a5faf7b1dee696e0db332360d2d.tar.gz
snap-63234d8858b20a5faf7b1dee696e0db332360d2d.zip
merge
Diffstat (limited to 'threads.js')
-rw-r--r--threads.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/threads.js b/threads.js
index 6f5f35c..d1c633e 100644
--- a/threads.js
+++ b/threads.js
@@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/
// Global stuff ////////////////////////////////////////////////////////
-modules.threads = '2015-January-12';
+modules.threads = '2015-February-28';
var ThreadManager;
var Process;
@@ -1966,7 +1966,7 @@ Process.prototype.reportTypeOf = function (thing) {
if (thing === true || (thing === false)) {
return 'Boolean';
}
- if (!isNaN(filterFloat(thing))) {
+ if (!isNaN(+thing)) {
return 'number';
}
if (isString(thing)) {