Unrevert D3518381

Reviewed By: gabelevi

Differential Revision: D3522895

fbshipit-source-id: 52f28c7f3142566a07d8bc845be882aeda098809
This commit is contained in:
Jeff Morrison
2016-07-06 12:49:08 -07:00
committed by Facebook Github Bot 9
parent ba3c7ef08c
commit 7795918eb4
11 changed files with 43 additions and 18 deletions

View File

@@ -101,6 +101,7 @@ function convertObject(object: Object, depth: number) {
if (!first) {
output += ', ';
}
// $FlowFixMe(>=0.28.0)
output += `${key}: ${convertValue(object[key], depth + 1)}`;
first = false;
}