Skip to content

Commit

Permalink
chore: release 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Sep 10, 2018
1 parent 3f0144d commit af653a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ Kareem.prototype.clone = function() {

Kareem.prototype.merge = function(other, clone) {
clone = arguments.length === 1 ? true : clone;
var ret = clone ? this.clone() : ret;
var ret = clone ? this.clone() : this;

for (let key of other._pres.keys()) {
const sourcePres = get(ret._pres, key, []);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kareem",
"version": "2.2.2",
"version": "2.2.3",
"description": "Next-generation take on pre/post function hooks",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit af653a3

Please sign in to comment.