()
| 79 | const getPartialList = () => Object.keys(partials); |
| 80 | const getActionTypeList = () => Object.keys(actionTypes); |
| 81 | function getGeneratorList() { |
| 82 | return Object.keys(generators).map(function (name) { |
| 83 | const { description } = generators[name]; |
| 84 | return { name, description }; |
| 85 | }); |
| 86 | } |
| 87 | |
| 88 | const setDefaultInclude = (inc) => (defaultInclude = inc); |
| 89 | const getDefaultInclude = () => defaultInclude; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…