mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
Bump to v4.16.5.
This commit is contained in:
@@ -37,7 +37,7 @@ var baseAssign = require('./_baseAssign'),
|
||||
*/
|
||||
function create(prototype, properties) {
|
||||
var result = baseCreate(prototype);
|
||||
return properties ? baseAssign(result, properties) : result;
|
||||
return properties == null ? result : baseAssign(result, properties);
|
||||
}
|
||||
|
||||
module.exports = create;
|
||||
|
||||
Reference in New Issue
Block a user