We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
var map = {}; if (ie < 8) { map['for'] = 'htmlFor'; map['class'] = 'className'; } else { map['htmlFor'] = 'for'; map['className'] = 'class'; } 比如这段代码在1.2.2版本中会被压缩 .....a.for = "htmlFor".... 在ie8版本中报"缺少标识符"的错误 还有这种代码: function createPromise(resolver) { return { 'then': function (onFulfilled, onRejected) { return then(resolver, onFulfilled, onRejected); }, 'catch': function (onRejected) { return then(resolver, null, onRejected); } }; } catch被压缩后也没有引号,同样报错,希望authors能尽快处理
The text was updated successfully, but these errors were encountered:
No branches or pull requests
var map = {};
if (ie < 8) {
map['for'] = 'htmlFor';
map['class'] = 'className';
}
else {
map['htmlFor'] = 'for';
map['className'] = 'class';
}
比如这段代码在1.2.2版本中会被压缩
.....a.for = "htmlFor".... 在ie8版本中报"缺少标识符"的错误
还有这种代码:
function createPromise(resolver) {
return {
'then': function (onFulfilled, onRejected) {
return then(resolver, onFulfilled, onRejected);
},
'catch': function (onRejected) {
return then(resolver, null, onRejected);
}
};
}
catch被压缩后也没有引号,同样报错,希望authors能尽快处理
The text was updated successfully, but these errors were encountered: