Skip to content

Commit

Permalink
chore(lint): resolve lint failures
Browse files Browse the repository at this point in the history
  • Loading branch information
terinjokes committed Jun 15, 2016
1 parent fe2158a commit 0027093
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/create-error.js
@@ -1,5 +1,6 @@
'use strict';
var PluginError = require('gulp-util/lib/PluginError');

var pluginName = 'gulp-uglify';

module.exports = function createError(file, err) {
Expand Down
4 changes: 2 additions & 2 deletions minifier.js
Expand Up @@ -13,8 +13,8 @@ var reSourceMapComment = /\n\/\/# sourceMappingURL=.+?$/;
function trycatch(fn, handle) {
try {
return fn();
} catch (e) {
return handle(e);
} catch (err) {
return handle(err);
}
}

Expand Down

0 comments on commit 0027093

Please sign in to comment.