From 897d85d1ac82dd2e757eefe99e4a6ac3e5e0c486 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Fri, 3 Jul 2020 11:57:15 -0400 Subject: Util refactor and fix (#638) * Remove unused functions * Fix clone function not being visible on the window object --- ext/mixed/js/core.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/mixed') diff --git a/ext/mixed/js/core.js b/ext/mixed/js/core.js index fec26a0e..7cdd62d8 100644 --- a/ext/mixed/js/core.js +++ b/ext/mixed/js/core.js @@ -192,6 +192,11 @@ const clone = (() => { return clone; })(); +// Expose clone function on the global object, since util.js's utilBackgroundIsolate needs access to it. +if (typeof window === 'object' && window !== null) { + window.clone = clone; +} + /* * Async utilities -- cgit v1.2.3