mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-17 19:48:26 -05:00
15 lines
206 B
JavaScript
15 lines
206 B
JavaScript
module.exports = {
|
|
prefix(prop) {
|
|
let match = prop.match(/^(-\w+-)/)
|
|
if (match) {
|
|
return match[0]
|
|
}
|
|
|
|
return ''
|
|
},
|
|
|
|
unprefixed(prop) {
|
|
return prop.replace(/^-\w+-/, '')
|
|
}
|
|
}
|