From 77b66929447bd4419660fa8f3d7afcbece56fc2f Mon Sep 17 00:00:00 2001 From: Andre Wiggins Date: Thu, 23 Oct 2025 13:26:59 -0700 Subject: [PATCH 1/2] Format repo --- test/fixtures/basic-compress-false/src/index.js | 2 +- test/fixtures/basic-css/src/index.js | 2 +- test/fixtures/basic-dashed-external/src/index.js | 2 +- test/fixtures/basic-json/src/index.js | 2 +- test/fixtures/basic-no-compress/src/index.js | 2 +- test/fixtures/basic-no-pkg-main/src/index.js | 2 +- test/fixtures/basic-with-cwd/basic/src/index.js | 2 +- test/fixtures/basic/src/index.js | 2 +- test/fixtures/css-modules--false/src/index.js | 2 +- test/fixtures/css-modules--null/src/index.js | 2 +- test/fixtures/css-modules--string/src/index.js | 2 +- test/fixtures/css-modules--true/src/index.js | 2 +- test/fixtures/custom-outputs-alt/src/index.js | 2 +- test/fixtures/custom-outputs/src/index.js | 2 +- .../custom-source-with-cwd/custom-source/src/custom-source.js | 2 +- test/fixtures/custom-source/src/custom-source.js | 2 +- test/fixtures/inline-source-map/src/index.js | 2 +- test/fixtures/mangle-json-file/src/index.js | 2 +- test/fixtures/minify-config/src/index.js | 2 +- test/fixtures/minify-path-config/src/index.js | 2 +- .../minify-path-parent-dir/index.js | 2 +- test/fixtures/modern-generators/src/index.js | 2 +- test/fixtures/modern/src/index.js | 2 +- test/fixtures/name-custom-amd/src/index.js | 2 +- test/fixtures/name-custom-cli/src/index.js | 2 +- test/fixtures/no-pkg-name/src/index.js | 2 +- test/fixtures/no-pkg/src/index.js | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/test/fixtures/basic-compress-false/src/index.js b/test/fixtures/basic-compress-false/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/basic-compress-false/src/index.js +++ b/test/fixtures/basic-compress-false/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/basic-css/src/index.js b/test/fixtures/basic-css/src/index.js index 3a807d79..69d12538 100644 --- a/test/fixtures/basic-css/src/index.js +++ b/test/fixtures/basic-css/src/index.js @@ -1,6 +1,6 @@ import './two.css'; -export default function() { +export default function () { const el = document.createElement('div'); el.className = 'testing'; return el; diff --git a/test/fixtures/basic-dashed-external/src/index.js b/test/fixtures/basic-dashed-external/src/index.js index f1fd29e2..dd7e2f97 100644 --- a/test/fixtures/basic-dashed-external/src/index.js +++ b/test/fixtures/basic-dashed-external/src/index.js @@ -3,6 +3,6 @@ console.log(tinyglob); import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/basic-json/src/index.js b/test/fixtures/basic-json/src/index.js index c00eab09..88442f08 100644 --- a/test/fixtures/basic-json/src/index.js +++ b/test/fixtures/basic-json/src/index.js @@ -1,5 +1,5 @@ import two from './two.json'; -export default async function(...args) { +export default async function (...args) { return two; } diff --git a/test/fixtures/basic-no-compress/src/index.js b/test/fixtures/basic-no-compress/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/basic-no-compress/src/index.js +++ b/test/fixtures/basic-no-compress/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/basic-no-pkg-main/src/index.js b/test/fixtures/basic-no-pkg-main/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/basic-no-pkg-main/src/index.js +++ b/test/fixtures/basic-no-pkg-main/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/basic-with-cwd/basic/src/index.js b/test/fixtures/basic-with-cwd/basic/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/basic-with-cwd/basic/src/index.js +++ b/test/fixtures/basic-with-cwd/basic/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/basic/src/index.js b/test/fixtures/basic/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/basic/src/index.js +++ b/test/fixtures/basic/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/css-modules--false/src/index.js b/test/fixtures/css-modules--false/src/index.js index 6edf3533..430e7c19 100644 --- a/test/fixtures/css-modules--false/src/index.js +++ b/test/fixtures/css-modules--false/src/index.js @@ -1,4 +1,4 @@ import './not_scoped.css'; import './not_scoped.module.css'; -export default function() {} +export default function () {} diff --git a/test/fixtures/css-modules--null/src/index.js b/test/fixtures/css-modules--null/src/index.js index e2bfa463..74b754fb 100644 --- a/test/fixtures/css-modules--null/src/index.js +++ b/test/fixtures/css-modules--null/src/index.js @@ -1,7 +1,7 @@ import './not_scoped.css'; import scoped from './scoped.module.css'; -export default function() { +export default function () { const el = document.createElement('div'); el.className = scoped.scoped_class; return el; diff --git a/test/fixtures/css-modules--string/src/index.js b/test/fixtures/css-modules--string/src/index.js index 7fac50a4..ef4849de 100644 --- a/test/fixtures/css-modules--string/src/index.js +++ b/test/fixtures/css-modules--string/src/index.js @@ -1,7 +1,7 @@ import global from './scoped.css'; import scoped from './scoped.module.css'; -export default function() { +export default function () { const el = document.createElement('div'); el.className = scoped.scoped_class + ' ' + global.test_class_that_should_be_scoped; diff --git a/test/fixtures/css-modules--true/src/index.js b/test/fixtures/css-modules--true/src/index.js index 7fac50a4..ef4849de 100644 --- a/test/fixtures/css-modules--true/src/index.js +++ b/test/fixtures/css-modules--true/src/index.js @@ -1,7 +1,7 @@ import global from './scoped.css'; import scoped from './scoped.module.css'; -export default function() { +export default function () { const el = document.createElement('div'); el.className = scoped.scoped_class + ' ' + global.test_class_that_should_be_scoped; diff --git a/test/fixtures/custom-outputs-alt/src/index.js b/test/fixtures/custom-outputs-alt/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/custom-outputs-alt/src/index.js +++ b/test/fixtures/custom-outputs-alt/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/custom-outputs/src/index.js b/test/fixtures/custom-outputs/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/custom-outputs/src/index.js +++ b/test/fixtures/custom-outputs/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/custom-source-with-cwd/custom-source/src/custom-source.js b/test/fixtures/custom-source-with-cwd/custom-source/src/custom-source.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/custom-source-with-cwd/custom-source/src/custom-source.js +++ b/test/fixtures/custom-source-with-cwd/custom-source/src/custom-source.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/custom-source/src/custom-source.js b/test/fixtures/custom-source/src/custom-source.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/custom-source/src/custom-source.js +++ b/test/fixtures/custom-source/src/custom-source.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/inline-source-map/src/index.js b/test/fixtures/inline-source-map/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/inline-source-map/src/index.js +++ b/test/fixtures/inline-source-map/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/mangle-json-file/src/index.js b/test/fixtures/mangle-json-file/src/index.js index 8d0f5527..cca8c9ac 100644 --- a/test/fixtures/mangle-json-file/src/index.js +++ b/test/fixtures/mangle-json-file/src/index.js @@ -1,6 +1,6 @@ import { two } from './two'; -export default function() { +export default function () { console.log(two.prop1); console.log(two._prop2); return two; diff --git a/test/fixtures/minify-config/src/index.js b/test/fixtures/minify-config/src/index.js index 8d0f5527..cca8c9ac 100644 --- a/test/fixtures/minify-config/src/index.js +++ b/test/fixtures/minify-config/src/index.js @@ -1,6 +1,6 @@ import { two } from './two'; -export default function() { +export default function () { console.log(two.prop1); console.log(two._prop2); return two; diff --git a/test/fixtures/minify-path-config/src/index.js b/test/fixtures/minify-path-config/src/index.js index 8d0f5527..cca8c9ac 100644 --- a/test/fixtures/minify-path-config/src/index.js +++ b/test/fixtures/minify-path-config/src/index.js @@ -1,6 +1,6 @@ import { two } from './two'; -export default function() { +export default function () { console.log(two.prop1); console.log(two._prop2); return two; diff --git a/test/fixtures/minify-path-parent-dir-with-cwd/minify-path-parent-dir/index.js b/test/fixtures/minify-path-parent-dir-with-cwd/minify-path-parent-dir/index.js index 8d0f5527..cca8c9ac 100644 --- a/test/fixtures/minify-path-parent-dir-with-cwd/minify-path-parent-dir/index.js +++ b/test/fixtures/minify-path-parent-dir-with-cwd/minify-path-parent-dir/index.js @@ -1,6 +1,6 @@ import { two } from './two'; -export default function() { +export default function () { console.log(two.prop1); console.log(two._prop2); return two; diff --git a/test/fixtures/modern-generators/src/index.js b/test/fixtures/modern-generators/src/index.js index a9d95a89..551eefcf 100644 --- a/test/fixtures/modern-generators/src/index.js +++ b/test/fixtures/modern-generators/src/index.js @@ -1,6 +1,6 @@ import { idMaker } from './two'; -export default async function() { +export default async function () { const gen = idMaker(); return [gen.next().value, gen.next().value]; } diff --git a/test/fixtures/modern/src/index.js b/test/fixtures/modern/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/modern/src/index.js +++ b/test/fixtures/modern/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/name-custom-amd/src/index.js b/test/fixtures/name-custom-amd/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/name-custom-amd/src/index.js +++ b/test/fixtures/name-custom-amd/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/name-custom-cli/src/index.js b/test/fixtures/name-custom-cli/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/name-custom-cli/src/index.js +++ b/test/fixtures/name-custom-cli/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/no-pkg-name/src/index.js b/test/fixtures/no-pkg-name/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/no-pkg-name/src/index.js +++ b/test/fixtures/no-pkg-name/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } diff --git a/test/fixtures/no-pkg/src/index.js b/test/fixtures/no-pkg/src/index.js index a756a0a4..c0a2efb0 100644 --- a/test/fixtures/no-pkg/src/index.js +++ b/test/fixtures/no-pkg/src/index.js @@ -1,5 +1,5 @@ import { two } from './two'; -export default async function(...args) { +export default async function (...args) { return [await two(...args), await two(...args)]; } From 74fdad6a352037eab54f7c82fff7321ed1a7a05d Mon Sep 17 00:00:00 2001 From: Andre Wiggins Date: Thu, 23 Oct 2025 17:39:12 -0700 Subject: [PATCH 2/2] Update test snapshots --- test/__snapshots__/index.test.js.snap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/__snapshots__/index.test.js.snap b/test/__snapshots__/index.test.js.snap index cabd2132..27dedc37 100644 --- a/test/__snapshots__/index.test.js.snap +++ b/test/__snapshots__/index.test.js.snap @@ -1918,19 +1918,19 @@ exports[`fixtures build inline-source-map with microbundle 2`] = `3`; exports[`fixtures build inline-source-map with microbundle 3`] = ` "var r=function(){try{var r=arguments;return Promise.resolve([].slice.call(r).reduce(function(r,e){return r+e},0))}catch(r){return Promise.reject(r)}};export default function(){try{var e=arguments,t=[].slice.call(e);return Promise.resolve(r.apply(void 0,t)).then(function(e){return Promise.resolve(r.apply(void 0,t)).then(function(r){return[e,r]})})}catch(r){return Promise.reject(r)}} -//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXNvdXJjZS1tYXAuZXNtLm1qcyIsInNvdXJjZXMiOlsiLi4vc3JjL3R3by5qcyIsIi4uL3NyYy9pbmRleC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgYXN5bmMgZnVuY3Rpb24gdHdvKC4uLmFyZ3MpIHtcblx0cmV0dXJuIGFyZ3MucmVkdWNlKCh0b3RhbCwgdmFsdWUpID0+IHRvdGFsICsgdmFsdWUsIDApO1xufVxuIiwiaW1wb3J0IHsgdHdvIH0gZnJvbSAnLi90d28nO1xuXG5leHBvcnQgZGVmYXVsdCBhc3luYyBmdW5jdGlvbiguLi5hcmdzKSB7XG5cdHJldHVybiBbYXdhaXQgdHdvKC4uLmFyZ3MpLCBhd2FpdCB0d28oLi4uYXJncyldO1xufVxuIl0sIm5hbWVzIjpbInR3byIsInJlZHVjZSIsInRvdGFsIiwidmFsdWUiLCJhcmdzIl0sIm1hcHBpbmdzIjoiSUFBc0JBLGlDQUNyQix1QkFBTyxpQkFBS0MsT0FBTyxTQUFDQyxFQUFPQyxVQUFVRCxFQUFRQyxHQUFPLElBRHJELGtGQ0VpQ0MsMENBQ2xCSixlQUFPSSw0Q0FBYUosZUFBT0kscUJBQXpDLE1BQU8sVUFEUiJ9 +//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXNvdXJjZS1tYXAuZXNtLm1qcyIsInNvdXJjZXMiOlsiLi4vc3JjL3R3by5qcyIsIi4uL3NyYy9pbmRleC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgYXN5bmMgZnVuY3Rpb24gdHdvKC4uLmFyZ3MpIHtcblx0cmV0dXJuIGFyZ3MucmVkdWNlKCh0b3RhbCwgdmFsdWUpID0+IHRvdGFsICsgdmFsdWUsIDApO1xufVxuIiwiaW1wb3J0IHsgdHdvIH0gZnJvbSAnLi90d28nO1xuXG5leHBvcnQgZGVmYXVsdCBhc3luYyBmdW5jdGlvbiAoLi4uYXJncykge1xuXHRyZXR1cm4gW2F3YWl0IHR3byguLi5hcmdzKSwgYXdhaXQgdHdvKC4uLmFyZ3MpXTtcbn1cbiJdLCJuYW1lcyI6WyJ0d28iLCJyZWR1Y2UiLCJ0b3RhbCIsInZhbHVlIiwiYXJncyJdLCJtYXBwaW5ncyI6IklBQXNCQSxpQ0FDckIsdUJBQU8saUJBQUtDLE9BQU8sU0FBQ0MsRUFBT0MsVUFBVUQsRUFBUUMsR0FBTyxJQURyRCxrRkNFa0NDLDBDQUNuQkosZUFBT0ksNENBQWFKLGVBQU9JLHFCQUF6QyxNQUFPLFVBRFIifQ== " `; exports[`fixtures build inline-source-map with microbundle 4`] = ` "var r=function(){try{var r=arguments;return Promise.resolve([].slice.call(r).reduce(function(r,e){return r+e},0))}catch(r){return Promise.reject(r)}};module.exports=function(){try{var e=arguments,t=[].slice.call(e);return Promise.resolve(r.apply(void 0,t)).then(function(e){return Promise.resolve(r.apply(void 0,t)).then(function(r){return[e,r]})})}catch(r){return Promise.reject(r)}}; -//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXNvdXJjZS1tYXAuanMiLCJzb3VyY2VzIjpbIi4uL3NyYy90d28uanMiLCIuLi9zcmMvaW5kZXguanMiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGFzeW5jIGZ1bmN0aW9uIHR3byguLi5hcmdzKSB7XG5cdHJldHVybiBhcmdzLnJlZHVjZSgodG90YWwsIHZhbHVlKSA9PiB0b3RhbCArIHZhbHVlLCAwKTtcbn1cbiIsImltcG9ydCB7IHR3byB9IGZyb20gJy4vdHdvJztcblxuZXhwb3J0IGRlZmF1bHQgYXN5bmMgZnVuY3Rpb24oLi4uYXJncykge1xuXHRyZXR1cm4gW2F3YWl0IHR3byguLi5hcmdzKSwgYXdhaXQgdHdvKC4uLmFyZ3MpXTtcbn1cbiJdLCJuYW1lcyI6WyJ0d28iLCJyZWR1Y2UiLCJ0b3RhbCIsInZhbHVlIiwiYXJncyJdLCJtYXBwaW5ncyI6IklBQXNCQSxpQ0FDckIsdUJBQU8saUJBQUtDLE9BQU8sU0FBQ0MsRUFBT0MsVUFBVUQsRUFBUUMsR0FBTyxJQURyRCxrRkNFaUNDLDBDQUNsQkosZUFBT0ksNENBQWFKLGVBQU9JLHFCQUF6QyxNQUFPLFVBRFIifQ== +//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXNvdXJjZS1tYXAuanMiLCJzb3VyY2VzIjpbIi4uL3NyYy90d28uanMiLCIuLi9zcmMvaW5kZXguanMiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGFzeW5jIGZ1bmN0aW9uIHR3byguLi5hcmdzKSB7XG5cdHJldHVybiBhcmdzLnJlZHVjZSgodG90YWwsIHZhbHVlKSA9PiB0b3RhbCArIHZhbHVlLCAwKTtcbn1cbiIsImltcG9ydCB7IHR3byB9IGZyb20gJy4vdHdvJztcblxuZXhwb3J0IGRlZmF1bHQgYXN5bmMgZnVuY3Rpb24gKC4uLmFyZ3MpIHtcblx0cmV0dXJuIFthd2FpdCB0d28oLi4uYXJncyksIGF3YWl0IHR3byguLi5hcmdzKV07XG59XG4iXSwibmFtZXMiOlsidHdvIiwicmVkdWNlIiwidG90YWwiLCJ2YWx1ZSIsImFyZ3MiXSwibWFwcGluZ3MiOiJJQUFzQkEsaUNBQ3JCLHVCQUFPLGlCQUFLQyxPQUFPLFNBQUNDLEVBQU9DLFVBQVVELEVBQVFDLEdBQU8sSUFEckQsa0ZDRWtDQywwQ0FDbkJKLGVBQU9JLDRDQUFhSixlQUFPSSxxQkFBekMsTUFBTyxVQURSIn0= " `; exports[`fixtures build inline-source-map with microbundle 5`] = ` "!function(e,n){\\"object\\"==typeof exports&&\\"undefined\\"!=typeof module?module.exports=n():\\"function\\"==typeof define&&define.amd?define(n):(e||self).inlineSourceMap=n()}(this,function(){var e=function(){try{var e=arguments;return Promise.resolve([].slice.call(e).reduce(function(e,n){return e+n},0))}catch(e){return Promise.reject(e)}};return function(){try{var n=arguments,r=[].slice.call(n);return Promise.resolve(e.apply(void 0,r)).then(function(n){return Promise.resolve(e.apply(void 0,r)).then(function(e){return[n,e]})})}catch(e){return Promise.reject(e)}}}); -//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXNvdXJjZS1tYXAudW1kLmpzIiwic291cmNlcyI6WyIuLi9zcmMvdHdvLmpzIiwiLi4vc3JjL2luZGV4LmpzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBhc3luYyBmdW5jdGlvbiB0d28oLi4uYXJncykge1xuXHRyZXR1cm4gYXJncy5yZWR1Y2UoKHRvdGFsLCB2YWx1ZSkgPT4gdG90YWwgKyB2YWx1ZSwgMCk7XG59XG4iLCJpbXBvcnQgeyB0d28gfSBmcm9tICcuL3R3byc7XG5cbmV4cG9ydCBkZWZhdWx0IGFzeW5jIGZ1bmN0aW9uKC4uLmFyZ3MpIHtcblx0cmV0dXJuIFthd2FpdCB0d28oLi4uYXJncyksIGF3YWl0IHR3byguLi5hcmdzKV07XG59XG4iXSwibmFtZXMiOlsidHdvIiwicmVkdWNlIiwidG90YWwiLCJ2YWx1ZSIsImFyZ3MiXSwibWFwcGluZ3MiOiIwTEFBc0JBLGlDQUNyQix1QkFBTyxpQkFBS0MsT0FBTyxTQUFDQyxFQUFPQyxVQUFVRCxFQUFRQyxHQUFPLElBRHJELDBFQ0VpQ0MsMENBQ2xCSixlQUFPSSw0Q0FBYUosZUFBT0kscUJBQXpDLE1BQU8sVUFEUiJ9 +//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXNvdXJjZS1tYXAudW1kLmpzIiwic291cmNlcyI6WyIuLi9zcmMvdHdvLmpzIiwiLi4vc3JjL2luZGV4LmpzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBhc3luYyBmdW5jdGlvbiB0d28oLi4uYXJncykge1xuXHRyZXR1cm4gYXJncy5yZWR1Y2UoKHRvdGFsLCB2YWx1ZSkgPT4gdG90YWwgKyB2YWx1ZSwgMCk7XG59XG4iLCJpbXBvcnQgeyB0d28gfSBmcm9tICcuL3R3byc7XG5cbmV4cG9ydCBkZWZhdWx0IGFzeW5jIGZ1bmN0aW9uICguLi5hcmdzKSB7XG5cdHJldHVybiBbYXdhaXQgdHdvKC4uLmFyZ3MpLCBhd2FpdCB0d28oLi4uYXJncyldO1xufVxuIl0sIm5hbWVzIjpbInR3byIsInJlZHVjZSIsInRvdGFsIiwidmFsdWUiLCJhcmdzIl0sIm1hcHBpbmdzIjoiMExBQXNCQSxpQ0FDckIsdUJBQU8saUJBQUtDLE9BQU8sU0FBQ0MsRUFBT0MsVUFBVUQsRUFBUUMsR0FBTyxJQURyRCwwRUNFa0NDLDBDQUNuQkosZUFBT0ksNENBQWFKLGVBQU9JLHFCQUF6QyxNQUFPLFVBRFIifQ== " `;