docs(core): update fromJson return values

Dates are not returned, so remove Date from list of return values.

Closes #3070
This commit is contained in:
linclark
2014-02-27 10:54:05 -05:00
committed by Brian Ford
parent 41e648a47f
commit 8794a173f9
+1 -1
View File
@@ -986,7 +986,7 @@ function toJson(obj, pretty) {
* Deserializes a JSON string.
*
* @param {string} json JSON string to deserialize.
* @returns {Object|Array|Date|string|number} Deserialized thingy.
* @returns {Object|Array|string|number} Deserialized thingy.
*/
function fromJson(json) {
return isString(json)