Blame view

node_modules/autoprefixer/lib/hacks/flex-spec.js 323 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
  (function() {
    module.exports = function(prefix) {
      var spec;
      spec = prefix === '-webkit- 2009' || prefix === '-moz-' ? 2009 : prefix === '-ms-' ? 2012 : prefix === '-webkit-' ? 'final' : void 0;
      if (prefix === '-webkit- 2009') {
        prefix = '-webkit-';
      }
      return [spec, prefix];
    };
  
  }).call(this);