1
0
mirror of https://github.com/thangisme/notes.git synced 2024-07-01 17:45:32 +00:00
notes/node_modules/autoprefixer/lib/hacks/flex-spec.js

12 lines
323 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
(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);