* Returns iIFE code. * @param {string} args arguments * @param {string} body body * @returns {string} IIFE code
(args, body)
| 488 | * @returns {string} IIFE code |
| 489 | */ |
| 490 | iife(args, body) { |
| 491 | return `(${this.basicFunction(args, body)})()`; |
| 492 | } |
| 493 | |
| 494 | /** |
| 495 | * Returns for each code. |
no test coverage detected