12345678910111213141516171819202122232425262728293031323334 |
- 'use strict';
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = normalizeFlexFlow;
- // flex-flow: <flex-direction> || <flex-wrap>
- const flexDirection = ['row', 'row-reverse', 'column', 'column-reverse'];
- const flexWrap = ['nowrap', 'wrap', 'wrap-reverse'];
- function normalizeFlexFlow(flexFlow) {
- let order = {
- direction: '',
- wrap: ''
- };
- flexFlow.walk(({ value }) => {
- if (~flexDirection.indexOf(value.toLowerCase())) {
- order.direction = value;
- return;
- }
- if (~flexWrap.indexOf(value.toLowerCase())) {
- order.wrap = value;
- return;
- }
- });
- return `${order.direction} ${order.wrap}`.trim();
- };
- module.exports = exports['default'];
|