(obj, keys)
| 20118 | |
| 20119 | |
| 20120 | var objectWithoutProperties = function (obj, keys) { |
| 20121 | var target = {}; |
| 20122 | |
| 20123 | for (var i in obj) { |
| 20124 | if (keys.indexOf(i) >= 0) continue; |
| 20125 | if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; |
| 20126 | target[i] = obj[i]; |
| 20127 | } |
| 20128 | |
| 20129 | return target; |
| 20130 | }; |
| 20131 | |
| 20132 | var possibleConstructorReturn = function (self, call) { |
| 20133 | if (!self) { |
no outgoing calls
no test coverage detected