function DeprecatedStyleSheetPropType()

in deprecated-react-native-prop-types/DeprecatedStyleSheetPropType.js [14:25]


function DeprecatedStyleSheetPropType(shape) {
  const shapePropType = deprecatedCreateStrictShapeTypeChecker(shape);
  return function(props, propName, componentName, location, ...rest) {
    let newProps = props;
    if (props[propName]) {
      // Just make a dummy prop object with only the flattened style
      newProps = {};
      newProps[propName] = flattenStyle(props[propName]);
    }
    return shapePropType(newProps, propName, componentName, location, ...rest);
  };
}