frontend/.pnpm-store/v3/files/d1/edc8d6e700b5b4a4162daacc0c0efce9a9c44850993e58a17017a4b12963588d3411a245d799bd62ee53ab1e6e19c1926f92c7b34de45d6c92452e08322475

15 lines
208 B
Plaintext

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