We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 616710a commit 1558b43Copy full SHA for 1558b43
src/internal/observable/fromEvent.ts
@@ -2,6 +2,8 @@ import { Observable } from '../Observable';
2
import { isFunction } from '../util/isFunction';
3
import { Subscriber } from '../Subscriber';
4
5
+const toString: Function = Object.prototype.toString;
6
+
7
export type NodeStyleEventEmitter = {
8
addListener: (eventName: string, handler: Function) => void;
9
removeListener: (eventName: string, handler: Function) => void;
0 commit comments