Code Review
/
aai
/
esr-gui.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a05fceb798e7df142b912337172b118233eb82ad
[aai/esr-gui.git]
/
1
/*!
2
* depd
3
* Copyright(c) 2015 Douglas Christopher Wilson
4
* MIT Licensed
5
*/
6
7
'use strict'
8
9
/**
10
* Module exports.
11
* @public
12
*/
13
14
module.exports = eventListenerCount
15
16
/**
17
* Get the count of listeners on an event emitter of a specific type.
18
*/
19
20
function eventListenerCount(emitter, type) {
21
return emitter.listeners(type).length
22
}