以下のライブラリをインストールします。
$ yarn add camelcase-keys
以下のように使用します。
import camelcaseKeys from 'camelcase-keys'
// オブジェクトを変換
camelcaseKeys({'foo_bar': true});
//=> {fooBar: true}
// オブジェクトの配列を変換
camelcaseKeys([{'foo_bar': true}, {'bar_foo': false}]);
//=> [{fooBar: true}, {barFoo: false}]
// ネストしている場合
camelcaseKeys({'foo_bar': true, nested: {unicorn_rainbow: true}}, {deep: true});
//=> {fooBar: true, nested: {unicornRainbow: true}}