📄 vendor.js
/home/palash/git/site/node_modules/autoprefixer/lib/vendor.js
Language: js • Lines: 14
module.exports = {
  prefix(prop) {
    let match = prop.match(/^(-\w+-)/)
    if (match) {
      return match[0]
    }

    return ''
  },

  unprefixed(prop) {
    return prop.replace(/^-\w+-/, '')
  }
}