astro-ghostcms/.pnpm-store/v3/files/f8/76972c24608dcdb4e5db6901703...

20 lines
375 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* Return flexbox spec versions by prefix
*/
module.exports = function (prefix) {
let spec
if (prefix === '-webkit- 2009' || prefix === '-moz-') {
spec = 2009
} else if (prefix === '-ms-') {
spec = 2012
} else if (prefix === '-webkit-') {
spec = 'final'
}
if (prefix === '-webkit- 2009') {
prefix = '-webkit-'
}
return [spec, prefix]
}