(val)
| 81 | } |
| 82 | |
| 83 | projectNameFromClassName(val) { |
| 84 | const value = val ?? ''; |
| 85 | if (value.indexOf('Ember.') > -1) { |
| 86 | return 'ember'; |
| 87 | } |
| 88 | |
| 89 | if (value.indexOf('DS.') > 1) { |
| 90 | return 'ember-data'; |
| 91 | } |
| 92 | |
| 93 | return this.project.id; |
| 94 | } |
| 95 | } |
no outgoing calls
no test coverage detected