vendor.js 206 B

1234567891011121314
  1. module.exports = {
  2. prefix(prop) {
  3. let match = prop.match(/^(-\w+-)/)
  4. if (match) {
  5. return match[0]
  6. }
  7. return ''
  8. },
  9. unprefixed(prop) {
  10. return prop.replace(/^-\w+-/, '')
  11. }
  12. }