(target, source)
| 660 | } |
| 661 | |
| 662 | function mirrorProperties(target, source) { |
| 663 | for (var prop in source) { |
| 664 | if (!hasOwn.call(target, prop)) { |
| 665 | target[prop] = source[prop]; |
| 666 | } |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | function isRestorable (obj) { |
| 671 | return typeof obj === "function" && typeof obj.restore === "function" && obj.restore.sinon; |
no outgoing calls
no test coverage detected
searching dependent graphs…