From 26d5ba992c41912477c82b79b3d5c011cce0d00e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 27 Sep 2016 14:04:06 -0700 Subject: [PATCH] Fix `prototype` typo. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 8ac3ce3c5..67a9e7205 100644 --- a/lodash.js +++ b/lodash.js @@ -1672,7 +1672,7 @@ if (objectCreate) { return objectCreate(proto); } - object.prototype = prototype; + object.prototype = proto; var result = new object; object.prototype = undefined; return result;