(methods)
| 329 | } |
| 330 | |
| 331 | function getFormattedMethodsExcludingRelations(methods) { |
| 332 | return methods.filter(function(m) { |
| 333 | return m.name.indexOf('__') === -1; |
| 334 | }) |
| 335 | .map(function(m) { |
| 336 | return formatMethod(m); |
| 337 | }) |
| 338 | .reduce(function(p, c) { |
| 339 | return p.concat(c); |
| 340 | }); |
| 341 | } |
| 342 | |
| 343 | function getCreateMethod(methods) { |
| 344 | return methods.find(function(m) { |
no test coverage detected
searching dependent graphs…