Returns the module name for this addon. @public @method moduleName @return {String} module name
()
| 1268 | @return {String} module name |
| 1269 | */ |
| 1270 | moduleName() { |
| 1271 | if (!this.modulePrefix) { |
| 1272 | this.modulePrefix = this.name.toLowerCase().replace(/\s/g, '-'); |
| 1273 | } |
| 1274 | |
| 1275 | return this.modulePrefix; |
| 1276 | }, |
| 1277 | |
| 1278 | /** |
| 1279 | Returns the path for addon blueprints. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…