From 4fa6e70735f10d4359da3df6b379e5cb9e6ce57b Mon Sep 17 00:00:00 2001 From: name Date: Tue, 30 Aug 2022 22:34:11 -0700 Subject: [PATCH] deploy --- modules/_chainResult.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/_chainResult.js b/modules/_chainResult.js index b786520c9..7f78cd2f0 100644 --- a/modules/_chainResult.js +++ b/modules/_chainResult.js @@ -2,5 +2,5 @@ import _ from './underscore.js'; // Helper function to continue chaining intermediate results. export default function chainResult(instance, obj) { - return instance._chain ? _(obj).chain() : obj; + return instance._chain ? _(obj) : obj; }