* Creates an object that inherits from the given `prototype` object. If a * `properties` object is provided its own enumerable properties are assigned * to the created object. * * @static * @memberOf _ * @category Objects * @param {Object} prototype The object to i
(prototype, properties)
| 36965 | * // => true |
| 36966 | */ |
| 36967 | function create(prototype, properties) { |
| 36968 | var result = baseCreate(prototype); |
| 36969 | return properties ? assign(result, properties) : result; |
| 36970 | } |
| 36971 | |
| 36972 | /** |
| 36973 | * Assigns own enumerable properties of source object(s) to the destination |
nothing calls this directly
no test coverage detected