Skip to content

Commit 70d2ed1

Browse files
committed
Revert "Add another log for IE?"
This reverts commit c805d7e.
1 parent e8644f8 commit 70d2ed1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/method-names.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var E = events.EventEmitter.prototype;
2828
assert.strictEqual(E.constructor.name, 'EventEmitter');
2929
assert.strictEqual(E.on, E.addListener); // Same method.
3030
assert.strictEqual(E.off, E.removeListener); // Same method.
31-
console.log(Object.getOwnPropertyNames(E));
3231
Object.getOwnPropertyNames(E).forEach(function(name) {
3332
if (name === 'constructor' || name === 'on' || name === 'off') return;
3433
if (typeof E[name] !== 'function') return;

0 commit comments

Comments
 (0)