MCPcopy Index your code
hub / github.com/jashkenas/underscore / create

Function create

underscore.js:653–657  ·  view source on GitHub ↗
(prototype, props)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

baseCreateFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…