mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-10-09 06:25:50 +08:00
10 lines
248 B
JavaScript
10 lines
248 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' };
|