Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iamvdo committed Aug 25, 2014
1 parent 4f6f120 commit b5a47c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
var Pleeease = function (options) {

var Options = require('../lib/options');
this.opts = Options().extend(options);
this.opts = new Options().extend(options);

};

Expand Down
4 changes: 2 additions & 2 deletions lib/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Options.prototype.extend = function (options) {

return this.defaults;

}
};

/**
*
Expand All @@ -97,7 +97,7 @@ Options.prototype.extend = function (options) {
*/
Options.prototype.extendValues = function (values, source) {

var source = source || this.defaults;
source = source || this.defaults;


var src, val;
Expand Down

0 comments on commit b5a47c9

Please sign in to comment.