2
0
mirror of https://github.com/vuejs/babel-plugin-jsx.git synced 2025-05-02 14:24:42 +08:00
2020-05-26 21:04:56 +08:00

10 lines
215 B
JavaScript

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;