(Model, methodName, store)
| 1889 | } |
| 1890 | |
| 1891 | function spyAndStoreSinceArg(Model, methodName, store) { |
| 1892 | const orig = Model[methodName]; |
| 1893 | Model[methodName] = function(since) { |
| 1894 | store.push(since); |
| 1895 | orig.apply(this, arguments); |
| 1896 | }; |
| 1897 | } |
| 1898 | |
| 1899 | function getPropValue(obj, name) { |
| 1900 | return Array.isArray(obj) ? |
no outgoing calls
no test coverage detected
searching dependent graphs…