* @returns {boolean}
()
| 47 | * @returns {boolean} |
| 48 | */ |
| 49 | enable() { |
| 50 | if (this[kEnabled] === undefined) |
| 51 | throw new ERR_INVALID_THIS('ELDHistogram'); |
| 52 | if (this[kEnabled]) return false; |
| 53 | this[kEnabled] = true; |
| 54 | this[kHandle].start(); |
| 55 | return true; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * @returns {boolean} |
no test coverage detected