19 lines
506 B
JavaScript
19 lines
506 B
JavaScript
/**
|
|
* Copyright (c) 2013-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.
|
|
*
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var ReactFeatureFlags = {
|
|
// When true, call console.time() before and .timeEnd() after each top-level
|
|
// render (both initial renders and updates). Useful when looking at prod-mode
|
|
// timeline profiles in Chrome, for example.
|
|
logTopLevelRenders: false
|
|
};
|
|
|
|
module.exports = ReactFeatureFlags; |