2
0
mirror of https://github.com/vuejs/babel-plugin-jsx.git synced 2025-03-18 16:35:17 +08:00

10 lines
215 B
JavaScript
Raw Normal View History

2020-05-26 21:04:56 +08:00
const transformOn = (obj) => {
const result = {};
Object.keys(obj).forEach((evt) => {
result[`on${evt[0].toUpperCase()}${evt.substr(1)}`] = obj[evt];
});
return result;
};
module.exports = transformOn;