* Returns empty function code. * @returns {string} empty function code
()
| 372 | * @returns {string} empty function code |
| 373 | */ |
| 374 | emptyFunction() { |
| 375 | return this.supportsArrowFunction() ? "x => {}" : "function() {}"; |
| 376 | } |
| 377 | |
| 378 | /** |
| 379 | * Guards an access/call on `object` with optional chaining when supported, |
no test coverage detected