basant307/AI_Governance_Project
048
1module.exports = {2 prefix(prop) {3 let match = prop.match(/^(-\w+-)/)4 if (match) {5 return match[0]6 }7 8 return ''9 },10 11 unprefixed(prop) {12 return prop.replace(/^-\w+-/, '')13 }14}15 