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