(obj, target)
| 5631 | } |
| 5632 | |
| 5633 | function copyObj(obj, target) { |
| 5634 | if (!target) target = {}; |
| 5635 | for (var prop in obj) if (obj.hasOwnProperty(prop)) target[prop] = obj[prop]; |
| 5636 | return target; |
| 5637 | } |
| 5638 | |
| 5639 | function emptyArray(size) { |
| 5640 | for (var a = [], i = 0; i < size; ++i) a.push(undefined); |
no outgoing calls
no test coverage detected