Skip to content

Commit

Permalink
Make internal property not writable
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Apr 25, 2014
1 parent 03e05c0 commit 9f330e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipe.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = function (e1, e2) {
(pipes = e1.__eePipes__).push(e2);
return pipe;
}
defineProperty(e1, '__eePipes__', d(pipes = [e2]));
defineProperty(e1, '__eePipes__', d('c', pipes = [e2]));
desc = getOwnPropertyDescriptor(e1, 'emit');
delete desc.get;
delete desc.set;
Expand Down

0 comments on commit 9f330e1

Please sign in to comment.