(methods)
| 359 | } |
| 360 | |
| 361 | function getFormattedPrototypeMethods(methods) { |
| 362 | return methods.filter(function(m) { |
| 363 | return m.name.indexOf('prototype.__') === 0; |
| 364 | }) |
| 365 | .map(function(m) { |
| 366 | return formatMethod(m); |
| 367 | }) |
| 368 | .reduce(function(p, c) { |
| 369 | return p.concat(c); |
| 370 | }); |
| 371 | } |
no test coverage detected
searching dependent graphs…