hugoWebsite/node_modules/autoprefixer/lib/vendor.js

15 lines
206 B
JavaScript
Raw Normal View History

2022-10-29 00:20:35 +02:00
module.exports = {
prefix(prop) {
let match = prop.match(/^(-\w+-)/)
if (match) {
return match[0]
}
return ''
},
unprefixed(prop) {
return prop.replace(/^-\w+-/, '')
}
}