(obj, chain)
| 11397 | |
| 11398 | // Helper function to continue chaining intermediate results. |
| 11399 | var result = function(obj, chain) { |
| 11400 | return chain ? _(obj).chain() : obj; |
| 11401 | }; |
| 11402 | |
| 11403 | // A method to easily add functions to the OOP wrapper. |
| 11404 | var addToWrapper = function(name, func) { |
no test coverage detected
searching dependent graphs…