(prototype)
| 27970 | |
| 27971 | // An internal function for creating a new object that inherits from another. |
| 27972 | var baseCreate = function(prototype) { |
| 27973 | if (!_.isObject(prototype)) return {}; |
| 27974 | if (nativeCreate) return nativeCreate(prototype); |
| 27975 | Ctor.prototype = prototype; |
| 27976 | var result = new Ctor; |
| 27977 | Ctor.prototype = null; |
| 27978 | return result; |
| 27979 | }; |
| 27980 | |
| 27981 | var property = function(key) { |
| 27982 | return function(obj) { |
no outgoing calls
no test coverage detected