(prototype, props)
| 651 | // If additional properties are provided then they will be added to the |
| 652 | // created object. |
| 653 | function create(prototype, props) { |
| 654 | var result = baseCreate(prototype); |
| 655 | if (props) extendOwn(result, props); |
| 656 | return result; |
| 657 | } |
| 658 | |
| 659 | // Create a (shallow-cloned) duplicate of an object. |
| 660 | function clone(obj) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…