.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / autoprefixer / lib / hacks / flex-spec.js
1 'use strict';
2
3 /**
4  * Return flexbox spec versions by prefix
5  */
6 module.exports = function (prefix) {
7     var spec = void 0;
8     if (prefix === '-webkit- 2009' || prefix === '-moz-') {
9         spec = 2009;
10     } else if (prefix === '-ms-') {
11         spec = 2012;
12     } else if (prefix === '-webkit-') {
13         spec = 'final';
14     }
15
16     if (prefix === '-webkit- 2009') {
17         prefix = '-webkit-';
18     }
19
20     return [spec, prefix];
21 };