mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 14:59:29 +08:00
20 lines
436 B
Text
20 lines
436 B
Text
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
|