Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
robario committed May 11, 2016
1 parent ab0b292 commit febf272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = function (css, map) {

new CleanCSS(cleanCssOpti).minify(css, function (err, minified) {
if ( err ) {
if (Array.isArray(err) && (arr[0] != null)) {
if (Array.isArray(err) && (err[0] != null)) {
return callback(err[0]);
}else{
return callback(err);
Expand Down

0 comments on commit febf272

Please sign in to comment.