(inc, contents, field, value)
| 416 | } |
| 417 | |
| 418 | function include(inc, contents, field, value) { |
| 419 | if (inc.indexOf(field) !== -1) { |
| 420 | if (typeof value === 'function') value(); |
| 421 | else contents[field] = value; |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | module.exports = { |
| 426 | Generator, |
no outgoing calls
no test coverage detected