From e351f4dd95aeeb9f59a9a0f9a83b9558f7f4cce0 Mon Sep 17 00:00:00 2001 From: Daniel Freedman Date: Wed, 20 Feb 2019 17:02:25 -0800 Subject: [PATCH] NOOP has to be an array for closure compiler --- lib/mixins/property-effects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mixins/property-effects.js b/lib/mixins/property-effects.js index 857e786fb9..114568cc99 100644 --- a/lib/mixins/property-effects.js +++ b/lib/mixins/property-effects.js @@ -25,7 +25,7 @@ import { sanitizeDOMValue, legacyUndefined, legacyNoBatch } from '../utils/setti // from multiple properties in the same turn let dedupeId = 0; -const NOOP = {}; +const NOOP = []; /** * Property effect types; effects are stored on the prototype using these keys