mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-12-09 15:09:40 +08:00
10 lines
243 B
JavaScript
10 lines
243 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 { transformOn as default, transformOn as 'module.exports' }
|