fbobjc -> Flow v0.28

Reviewed By: gabelevi

Differential Revision: D3518381

fbshipit-source-id: 2dd5f89177aaefbd098ba1fd3c193da111ff14c7
This commit is contained in:
Jeff Morrison
2016-07-06 08:56:10 -07:00
committed by Facebook Github Bot
parent dc2597ffee
commit a8e6a236cc
11 changed files with 37 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;
}