(name)
| 61 | const getPartial = (name) => partials[name]; |
| 62 | const getActionType = (name) => actionTypes[name]; |
| 63 | const getGenerator = (name) => generators[name]; |
| 64 | function setGenerator(name = "", config = {}) { |
| 65 | // if no name is provided, use a default |
| 66 | name = name || `generator-${Object.keys(generators).length + 1}`; |
nothing calls this directly
no test coverage detected
searching dependent graphs…