astro-ghostcms/.pnpm-store/v3/files/31/644ca2b3460cda033f92ab6d70e...

15 lines
206 B
Plaintext

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