Files
chat-proxy/frontend/node_modules/autoprefixer/lib/vendor.js
T
Samuele E. Locatelli 1d4b5aba63 Init repo con git
2025-08-21 08:59:27 +00:00

15 lines
206 B
JavaScript

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