mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
21c433d998
Summary:Gains minor perf improvement in the for loop by caching the array length Closes https://github.com/facebook/react-native/pull/6671 Differential Revision: D3102064 fb-gh-sync-id: 2303d83f3672a2768c60d0e5dae999b1dda0d6bd fbshipit-source-id: 2303d83f3672a2768c60d0e5dae999b1dda0d6bd
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule flattenStyle
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var ReactNativePropRegistry = require('ReactNativePropRegistry');
|
|
var invariant = require('fbjs/lib/invariant');
|
|
|
|
import type { StyleObj } from 'StyleSheetTypes';
|
|
|
|
function getStyle(style) {
|
|
if (typeof style === 'number') {
|
|
return ReactNativePropRegistry.getByID(style);
|
|
}
|
|
return style;
|
|
}
|
|
|
|
function flattenStyle(style: ?StyleObj): ?Object {
|
|
if (!style) {
|
|
return undefined;
|
|
}
|
|
invariant(style !== true, 'style may be false but not true');
|
|
|
|
if (!Array.isArray(style)) {
|
|
return getStyle(style);
|
|
}
|
|
|
|
var result = {};
|
|
for (var i = 0, styleLength = style.length; i < styleLength; ++i) {
|
|
var computedStyle = flattenStyle(style[i]);
|
|
if (computedStyle) {
|
|
for (var key in computedStyle) {
|
|
result[key] = computedStyle[key];
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
module.exports = flattenStyle;
|