UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

38 lines (29 loc) 1.16 kB
"use strict"; exports.__esModule = true; exports.default = exports.prefixInlineStyles = void 0; var _createPrefixer = _interopRequireDefault(require("inline-style-prefixer/lib/createPrefixer")); var _static = _interopRequireDefault(require("./static")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Copyright (c) Nicolas Gallagher. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ var prefixAll = (0, _createPrefixer.default)(_static.default); var prefixInlineStyles = function prefixInlineStyles(style) { var prefixedStyles = prefixAll(style); // React@15 removed undocumented support for fallback values in // inline-styles. Revert array values to the standard CSS value Object.keys(prefixedStyles).forEach(function (prop) { var value = prefixedStyles[prop]; if (Array.isArray(value)) { prefixedStyles[prop] = value[value.length - 1]; } }); return prefixedStyles; }; exports.prefixInlineStyles = prefixInlineStyles; var _default = prefixAll; exports.default = _default;