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

Function create

underscore-node-f.cjs:646–650  ·  view source on GitHub ↗
(prototype, props)

Source from the content-addressed store, hash-verified

644// If additional properties are provided then they will be added to the
645// created object.
646function 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.
653function 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…