You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varexports=module.exports={'testkey': 'testvalue'};// 导出错误类型码Object.keys(constants).forEach(function(key){if(key.indexOf('ERR_')===0){exports[key]=constants[key];// this line will be converted wrong}});
will be converted to
exportconstkey= ...
The text was updated successfully, but these errors were encountered:
varexports={'testkey': 'testvalue'};exportdefaultexports;// 导出错误类型码Object.keys(constants).forEach(function(key){if(key.indexOf('ERR_')===0){exports[key]=constants[key];// this line will be converted wrong}});
will be converted to
The text was updated successfully, but these errors were encountered: