persona-community-5/.pnpm-store/v3/files/31/644ca2b3460cda033f92ab6d70e93dfa5bd10cfaf38e14486a962d06f112bf90010b8b527d580bb11b6b6729c9eb95e5ca1f0b2f56f79e85964ee4e1283444
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

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+-/, '')
}
}