From 077fb890836ce464400711a5f998362bc014d9c3 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 20 May 2016 21:21:04 -0700 Subject: [PATCH] Simplify `getNative`. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 0f60e8f43..7410867f1 100644 --- a/lodash.js +++ b/lodash.js @@ -5415,7 +5415,7 @@ */ function getNative(object, key) { var value = getValue(object, key); - return (isMaskable(value) ? baseIsNative : isNative)(value) ? value : undefined; + return baseIsNative(value) ? value : undefined; } /**