pull/3/merge
Jens Mönig 2015-02-28 05:58:34 -08:00
rodzic 58d8fd7ccd
commit e1a558a673
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -2455,4 +2455,5 @@ ______
150228
------
* Blocks, Store, GUI: Cache inputs, accelerates evaluating recursive reporters and warped / turbo recursive commands by up to 40%
* Objects: slightly optimize warped / turbo execution
* Objects: slightly optimize warped / turbo execution
* Threads: fixed #715

Wyświetl plik

@ -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;
@ -1926,7 +1926,7 @@ Process.prototype.reportTypeOf = function (thing) {
if (thing === true || (thing === false)) {
return 'Boolean';
}
if (!isNaN(parseFloat(thing))) {
if (!isNaN(+thing)) {
return 'number';
}
if (isString(thing)) {