(inc, contents, field, value)
| 454 | } |
| 455 | |
| 456 | function include(inc, contents, field, value) { |
| 457 | if (inc.indexOf(field) !== -1) { |
| 458 | if (typeof value === 'function') value(); |
| 459 | else contents[field] = value; |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | module.exports = { |
| 464 | Generator, |
no outgoing calls
no test coverage detected