我正在运行uglify作为我的grunt构建任务的一部分。我目前收到此错误:
Warning: Uglification failed. Unexpected token: punc ({).
该错误是由包含在更大函数中的代码引起的:
// Test if browser supports drag and drop
var testSupport = functon() {
var testElement = document.createElement('div');
return ('draggable' in testElement) || ('ondragstart' in testElement && 'ondrop' in testElement);
};
//Run test for drag and drop support
if (!testSupport()) {
return false;
}
当我删除此代码时,uglify完成且没有错误。为什么代码导致uglify失败?