8000 Fix `prototype` typo. · lodash/lodash@26d5ba9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 26d5ba9

Browse files
committed
Fix prototype typo.
1 parent 320ef6f commit 26d5ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lodash.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@
16721672
if (objectCreate) {
16731673
return objectCreate(proto);
16741674
}
1675-
object.prototype = prototype;
1675+
object.prototype = proto;
16761676
var result = new object;
16771677
object.prototype = undefined;
16781678
return result;

0 commit comments

Comments
 (0)
0