Blame view

node_modules/postcss-merge-longhand/dist/lib/parseTrbl.js 323 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  'use strict';
  
  exports.__esModule = true;
  
  var _postcss = require('postcss');
  
  exports.default = function (v) {
      var s = typeof v === 'string' ? _postcss.list.space(v) : v;
      return [s[0], // top
      s[1] || s[0], // right
      s[2] || s[0], // bottom
      s[3] || s[1] || s[0]];
  };
  
  module.exports = exports['default'];