UNPKG

react-native-mock-tmp-build

Version:

A fully mocked and test-friendly version of react native

18 lines (15 loc) 346 B
/** * https://github.com/facebook/react-native/blob/master/Libraries/StyleSheet/StyleSheet.js */ const StyleSheet = { create(styles) { return styles; }, flatten(styles) { if (Array.isArray(styles)) { return Object.assign({}, ...styles.map(StyleSheet.flatten)); } return styles; } }; module.exports = StyleSheet;