mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 02:27:20 -04:00
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
(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);
|