(inc, contents, field, value)
| 442 | } |
| 443 | |
| 444 | function include(inc, contents, field, value) { |
| 445 | if (inc.indexOf(field) !== -1) { |
| 446 | if (typeof value === 'function') value(); |
| 447 | else contents[field] = value; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | module.exports = { |
| 452 | Generator, |
no outgoing calls
no test coverage detected