mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-12-11 07:59:55 +08:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
function transformOn(obj) {
|
|
const result = {}
|
|
Object.keys(obj).forEach((evt) => {
|
|
result[`on${evt[0].toUpperCase()}${evt.slice(1)}`] = obj[evt]
|
|
})
|
|
return result
|
|
}
|
|
|
|
export default transformOn
|
|
export { transformOn as 'module.exports' }
|