Skip to content

Commit

Permalink
reduce memory usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ThinhVu committed Mar 20, 2023
1 parent 14c839a commit 62ba695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const chain = hmm => new Proxy({}, {
default:
return function (...args) {
hmm.payload.fns.push({n: p, args})
return chain(hmm)
return this;
}
}
}
Expand Down

0 comments on commit 62ba695

Please sign in to comment.