Summary: There was an issue with syncing our internal files to github. A change was made in the utils that wasn't synced out, despite the sonar code using the new API. This brings the util update to github, while I fix the syncing issue. After that there will be a single source of truth so no more sync issues like this can occur. Reviewed By: priteshrnandgaonkar Differential Revision: D8541128 fbshipit-source-id: d8509b65035569c4ee9707e5d7eab99fa325da88
21 lines
448 B
Objective-C
21 lines
448 B
Objective-C
/*
|
|
* Copyright (c) 2004-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the LICENSE
|
|
* file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include <folly/dynamic.h>
|
|
|
|
namespace facebook {
|
|
namespace cxxutils {
|
|
|
|
folly::dynamic convertIdToFollyDynamic(id json, bool nullifyNanAndInf = false);
|
|
id convertFollyDynamicToId(const folly::dynamic &dyn);
|
|
|
|
} }
|