Files
lcbp3.np-dms.work/frontend/node_modules/autoprefixer/lib/vendor.js
2025-09-21 20:29:15 +07:00

15 lines
206 B
JavaScript
Executable File

module.exports = {
prefix(prop) {
let match = prop.match(/^(-\w+-)/)
if (match) {
return match[0]
}
return ''
},
unprefixed(prop) {
return prop.replace(/^-\w+-/, '')
}
}