wx2
Version:
微信小程序 转换 百度小程序
12 lines (9 loc) • 333 B
JavaScript
/**
* @file 针对 dataset 转换,处理大小写敏感
*/
const {get, set, has} = require('lodash');
module.exports = function ({path, context, file}) {
if (get(path, 'node.property.type') === 'Identifier' && /dataset/i.test(get(path, 'node.property.name'))) {
set(path, 'node.property.name', 'dataset');
}
};