Skip to content

Commit

Permalink
Revert "Add another log for IE?"
Browse files Browse the repository at this point in the history
This reverts commit c805d7e.
  • Loading branch information
goto-bus-stop committed May 18, 2018
1 parent e8644f8 commit 70d2ed1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/method-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ var E = events.EventEmitter.prototype;
assert.strictEqual(E.constructor.name, 'EventEmitter');
assert.strictEqual(E.on, E.addListener); // Same method.
assert.strictEqual(E.off, E.removeListener); // Same method.
console.log(Object.getOwnPropertyNames(E));
Object.getOwnPropertyNames(E).forEach(function(name) {
if (name === 'constructor' || name === 'on' || name === 'off') return;
if (typeof E[name] !== 'function') return;
Expand Down

0 comments on commit 70d2ed1

Please sign in to comment.