astro-ghostcms/.pnpm-store/v3/files/b4/70490ee4cf76ee1dd0799eb28ad...

21 lines
436 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
let Declaration = require('../declaration')
let utils = require('../utils')
class BackdropFilter extends Declaration {
constructor(name, prefixes, all) {
super(name, prefixes, all)
if (this.prefixes) {
this.prefixes = utils.uniq(
this.prefixes.map(i => {
return i === '-ms-' ? '-webkit-' : i
})
)
}
}
}
BackdropFilter.names = ['backdrop-filter']
module.exports = BackdropFilter