@tsparticles/confetti 4.3.0 → 4.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/confetti.js +2 -2
- package/browser/confetti.lazy.js +2 -2
- package/cjs/confetti.js +2 -2
- package/cjs/confetti.lazy.js +2 -2
- package/esm/confetti.js +2 -2
- package/esm/confetti.lazy.js +2 -2
- package/package.json +17 -17
- package/report.html +1 -1
- package/tsparticles.confetti.bundle.js +46 -38
- package/tsparticles.confetti.bundle.min.js +1 -1
- package/tsparticles.confetti.js +3 -3
- package/tsparticles.confetti.min.js +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(function(g){g.__tsParticlesInternals=g.__tsParticlesInternals||{};g.__tsParticlesInternals.bundles=g.__tsParticlesInternals.bundles||{};g.__tsParticlesInternals.effects=g.__tsParticlesInternals.effects||{};g.__tsParticlesInternals.engine=g.__tsParticlesInternals.engine||{};g.__tsParticlesInternals.interactions=g.__tsParticlesInternals.interactions||{};g.__tsParticlesInternals.palettes=g.__tsParticlesInternals.palettes||{};g.__tsParticlesInternals.paths=g.__tsParticlesInternals.paths||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins.emittersShapes=g.__tsParticlesInternals.plugins.emittersShapes||{};g.__tsParticlesInternals.presets=g.__tsParticlesInternals.presets||{};g.__tsParticlesInternals.shapes=g.__tsParticlesInternals.shapes||{};g.__tsParticlesInternals.updaters=g.__tsParticlesInternals.updaters||{};g.__tsParticlesInternals.utils=g.__tsParticlesInternals.utils||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas.utils=g.__tsParticlesInternals.canvas.utils||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path.utils=g.__tsParticlesInternals.path.utils||{};var __tsProxyFactory=typeof Proxy!=="undefined"?function(obj){return new Proxy(obj,{get:function(target,key){if(!(key in target)){target[key]={};}return target[key];}});}:function(obj){return obj;};g.__tsParticlesInternals.bundles=__tsProxyFactory(g.__tsParticlesInternals.bundles);g.__tsParticlesInternals.effects=__tsProxyFactory(g.__tsParticlesInternals.effects);g.__tsParticlesInternals.interactions=__tsProxyFactory(g.__tsParticlesInternals.interactions);g.__tsParticlesInternals.palettes=__tsProxyFactory(g.__tsParticlesInternals.palettes);g.__tsParticlesInternals.paths=__tsProxyFactory(g.__tsParticlesInternals.paths);g.__tsParticlesInternals.plugins=__tsProxyFactory(g.__tsParticlesInternals.plugins);g.__tsParticlesInternals.plugins.emittersShapes=__tsProxyFactory(g.__tsParticlesInternals.plugins.emittersShapes);g.__tsParticlesInternals.presets=__tsProxyFactory(g.__tsParticlesInternals.presets);g.__tsParticlesInternals.shapes=__tsProxyFactory(g.__tsParticlesInternals.shapes);g.__tsParticlesInternals.updaters=__tsProxyFactory(g.__tsParticlesInternals.updaters);g.__tsParticlesInternals.utils=__tsProxyFactory(g.__tsParticlesInternals.utils);g.__tsParticlesInternals.canvas=__tsProxyFactory(g.__tsParticlesInternals.canvas);g.__tsParticlesInternals.path=__tsProxyFactory(g.__tsParticlesInternals.path);g.tsparticlesInternalExports=g.tsparticlesInternalExports||{};})(typeof globalThis!=="undefined"?globalThis:typeof window!=="undefined"?window:this);
|
|
2
|
-
/* tsParticles v4.3.
|
|
2
|
+
/* tsParticles v4.3.2 */
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
5
5
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
@@ -332,6 +332,9 @@
|
|
|
332
332
|
})(exports.PixelMode || (exports.PixelMode = {}));
|
|
333
333
|
|
|
334
334
|
const minRadius = 0;
|
|
335
|
+
function isForbiddenKey(key) {
|
|
336
|
+
return key === "__proto__" || key === "constructor" || key === "prototype";
|
|
337
|
+
}
|
|
335
338
|
function hasMatchMedia() {
|
|
336
339
|
return typeof matchMedia !== "undefined";
|
|
337
340
|
}
|
|
@@ -407,7 +410,7 @@
|
|
|
407
410
|
if (!hasNested) {
|
|
408
411
|
const sourceDict = source, destDict = destination;
|
|
409
412
|
for (const key of sourceKeys) {
|
|
410
|
-
if (key
|
|
413
|
+
if (isForbiddenKey(key)) {
|
|
411
414
|
continue;
|
|
412
415
|
}
|
|
413
416
|
const v = sourceDict[key];
|
|
@@ -418,7 +421,7 @@
|
|
|
418
421
|
continue;
|
|
419
422
|
}
|
|
420
423
|
for (const key of sourceKeys) {
|
|
421
|
-
if (key
|
|
424
|
+
if (isForbiddenKey(key)) {
|
|
422
425
|
continue;
|
|
423
426
|
}
|
|
424
427
|
const sourceDict = source, destDict = destination, value = sourceDict[key];
|
|
@@ -877,7 +880,7 @@
|
|
|
877
880
|
return this.#domArray;
|
|
878
881
|
}
|
|
879
882
|
get version() {
|
|
880
|
-
return "4.3.
|
|
883
|
+
return "4.3.2";
|
|
881
884
|
}
|
|
882
885
|
addEventListener(type, listener) {
|
|
883
886
|
this.#eventDispatcher.addEventListener(type, listener);
|
|
@@ -1160,7 +1163,12 @@
|
|
|
1160
1163
|
}
|
|
1161
1164
|
function loadExtendProperty(obj, key, value) {
|
|
1162
1165
|
if (value !== undefined) {
|
|
1163
|
-
|
|
1166
|
+
const keyStr = key;
|
|
1167
|
+
if (keyStr === "__proto__" || keyStr === "constructor" || keyStr === "prototype") {
|
|
1168
|
+
return;
|
|
1169
|
+
}
|
|
1170
|
+
const objRecord = obj, currentValue = Object.prototype.hasOwnProperty.call(objRecord, keyStr) ? objRecord[keyStr] : {};
|
|
1171
|
+
objRecord[keyStr] = deepExtend(currentValue, value);
|
|
1164
1172
|
}
|
|
1165
1173
|
}
|
|
1166
1174
|
function loadOptionProperty(obj, key, optionClass, ...sources) {
|
|
@@ -2253,7 +2261,7 @@
|
|
|
2253
2261
|
}
|
|
2254
2262
|
|
|
2255
2263
|
async function loadBlendPlugin(engine) {
|
|
2256
|
-
engine.checkVersion("4.3.
|
|
2264
|
+
engine.checkVersion("4.3.2");
|
|
2257
2265
|
await engine.pluginManager.register(e => {
|
|
2258
2266
|
e.pluginManager.addPlugin(new BlendPlugin());
|
|
2259
2267
|
});
|
|
@@ -2290,7 +2298,7 @@
|
|
|
2290
2298
|
}
|
|
2291
2299
|
|
|
2292
2300
|
async function loadCircleShape(engine) {
|
|
2293
|
-
engine.checkVersion("4.3.
|
|
2301
|
+
engine.checkVersion("4.3.2");
|
|
2294
2302
|
await engine.pluginManager.register(e => {
|
|
2295
2303
|
e.pluginManager.addShape(["circle"], () => {
|
|
2296
2304
|
return Promise.resolve(new CircleDrawer());
|
|
@@ -2338,7 +2346,7 @@
|
|
|
2338
2346
|
}
|
|
2339
2347
|
|
|
2340
2348
|
async function loadHexColorPlugin(engine) {
|
|
2341
|
-
engine.checkVersion("4.3.
|
|
2349
|
+
engine.checkVersion("4.3.2");
|
|
2342
2350
|
await engine.pluginManager.register(e => {
|
|
2343
2351
|
e.pluginManager.addColorManager("hex", new HexColorManager());
|
|
2344
2352
|
});
|
|
@@ -2391,7 +2399,7 @@
|
|
|
2391
2399
|
}
|
|
2392
2400
|
|
|
2393
2401
|
async function loadHslColorPlugin(engine) {
|
|
2394
|
-
engine.checkVersion("4.3.
|
|
2402
|
+
engine.checkVersion("4.3.2");
|
|
2395
2403
|
await engine.pluginManager.register(e => {
|
|
2396
2404
|
e.pluginManager.addColorManager("hsl", new HslColorManager());
|
|
2397
2405
|
});
|
|
@@ -2415,7 +2423,7 @@
|
|
|
2415
2423
|
}
|
|
2416
2424
|
|
|
2417
2425
|
async function loadMovePlugin(engine) {
|
|
2418
|
-
engine.checkVersion("4.3.
|
|
2426
|
+
engine.checkVersion("4.3.2");
|
|
2419
2427
|
await engine.pluginManager.register(e => {
|
|
2420
2428
|
const moveEngine = e, movePluginManager = moveEngine.pluginManager;
|
|
2421
2429
|
movePluginManager.initializers.pathGenerators ??= new Map();
|
|
@@ -2631,7 +2639,7 @@
|
|
|
2631
2639
|
}
|
|
2632
2640
|
|
|
2633
2641
|
async function loadOpacityUpdater(engine) {
|
|
2634
|
-
engine.checkVersion("4.3.
|
|
2642
|
+
engine.checkVersion("4.3.2");
|
|
2635
2643
|
await engine.pluginManager.register(e => {
|
|
2636
2644
|
e.pluginManager.addParticleUpdater("opacity", container => {
|
|
2637
2645
|
return Promise.resolve(new OpacityUpdater(container));
|
|
@@ -2976,7 +2984,7 @@
|
|
|
2976
2984
|
}
|
|
2977
2985
|
|
|
2978
2986
|
async function loadOutModesUpdater(engine) {
|
|
2979
|
-
engine.checkVersion("4.3.
|
|
2987
|
+
engine.checkVersion("4.3.2");
|
|
2980
2988
|
await engine.pluginManager.register(e => {
|
|
2981
2989
|
e.pluginManager.addParticleUpdater("outModes", container => {
|
|
2982
2990
|
return Promise.resolve(new OutOfCanvasUpdater(container));
|
|
@@ -3047,7 +3055,7 @@
|
|
|
3047
3055
|
}
|
|
3048
3056
|
|
|
3049
3057
|
async function loadPaintUpdater(engine) {
|
|
3050
|
-
engine.checkVersion("4.3.
|
|
3058
|
+
engine.checkVersion("4.3.2");
|
|
3051
3059
|
await engine.pluginManager.register(e => {
|
|
3052
3060
|
e.pluginManager.addParticleUpdater("paint", container => {
|
|
3053
3061
|
return Promise.resolve(new PaintUpdater(e.pluginManager, container));
|
|
@@ -3102,7 +3110,7 @@
|
|
|
3102
3110
|
}
|
|
3103
3111
|
|
|
3104
3112
|
async function loadRgbColorPlugin(engine) {
|
|
3105
|
-
engine.checkVersion("4.3.
|
|
3113
|
+
engine.checkVersion("4.3.2");
|
|
3106
3114
|
await engine.pluginManager.register(e => {
|
|
3107
3115
|
e.pluginManager.addColorManager("rgb", new RgbColorManager());
|
|
3108
3116
|
});
|
|
@@ -3187,7 +3195,7 @@
|
|
|
3187
3195
|
}
|
|
3188
3196
|
|
|
3189
3197
|
async function loadSizeUpdater(engine) {
|
|
3190
|
-
engine.checkVersion("4.3.
|
|
3198
|
+
engine.checkVersion("4.3.2");
|
|
3191
3199
|
await engine.pluginManager.register(e => {
|
|
3192
3200
|
e.pluginManager.addParticleUpdater("size", container => {
|
|
3193
3201
|
return Promise.resolve(new SizeUpdater(container));
|
|
@@ -3196,7 +3204,7 @@
|
|
|
3196
3204
|
}
|
|
3197
3205
|
|
|
3198
3206
|
async function loadBasic(engine) {
|
|
3199
|
-
engine.checkVersion("4.3.
|
|
3207
|
+
engine.checkVersion("4.3.2");
|
|
3200
3208
|
await engine.pluginManager.register(async (e) => {
|
|
3201
3209
|
await Promise.all([
|
|
3202
3210
|
loadBlendPlugin(e),
|
|
@@ -3496,7 +3504,7 @@
|
|
|
3496
3504
|
}
|
|
3497
3505
|
|
|
3498
3506
|
async function loadClubsSuitShape(engine) {
|
|
3499
|
-
engine.checkVersion("4.3.
|
|
3507
|
+
engine.checkVersion("4.3.2");
|
|
3500
3508
|
await engine.pluginManager.register(e => {
|
|
3501
3509
|
e.pluginManager.addShape(["club", "clubs"], () => Promise.resolve(new ClubDrawer()));
|
|
3502
3510
|
});
|
|
@@ -3510,7 +3518,7 @@
|
|
|
3510
3518
|
}
|
|
3511
3519
|
|
|
3512
3520
|
async function loadDiamondsSuitShape(engine) {
|
|
3513
|
-
engine.checkVersion("4.3.
|
|
3521
|
+
engine.checkVersion("4.3.2");
|
|
3514
3522
|
await engine.pluginManager.register(e => {
|
|
3515
3523
|
e.pluginManager.addShape(["diamond", "diamonds"], () => Promise.resolve(new DiamondDrawer()));
|
|
3516
3524
|
});
|
|
@@ -3524,7 +3532,7 @@
|
|
|
3524
3532
|
};
|
|
3525
3533
|
|
|
3526
3534
|
async function loadHeartsSuitShape(engine) {
|
|
3527
|
-
engine.checkVersion("4.3.
|
|
3535
|
+
engine.checkVersion("4.3.2");
|
|
3528
3536
|
await engine.pluginManager.register(e => {
|
|
3529
3537
|
e.pluginManager.addShape(["heart", "hearts"], () => Promise.resolve(new HeartDrawer$1()));
|
|
3530
3538
|
});
|
|
@@ -3538,14 +3546,14 @@
|
|
|
3538
3546
|
}
|
|
3539
3547
|
|
|
3540
3548
|
async function loadSpadesSuitShape(engine) {
|
|
3541
|
-
engine.checkVersion("4.3.
|
|
3549
|
+
engine.checkVersion("4.3.2");
|
|
3542
3550
|
await engine.pluginManager.register(e => {
|
|
3543
3551
|
e.pluginManager.addShape(["spade", "spades"], () => Promise.resolve(new SpadeDrawer()));
|
|
3544
3552
|
});
|
|
3545
3553
|
}
|
|
3546
3554
|
|
|
3547
3555
|
async function loadCardSuitsShape(engine) {
|
|
3548
|
-
engine.checkVersion("4.3.
|
|
3556
|
+
engine.checkVersion("4.3.2");
|
|
3549
3557
|
await Promise.all([
|
|
3550
3558
|
loadClubsSuitShape(engine),
|
|
3551
3559
|
loadDiamondsSuitShape(engine),
|
|
@@ -3760,7 +3768,7 @@
|
|
|
3760
3768
|
})(EmitterClickMode || (EmitterClickMode = {}));
|
|
3761
3769
|
|
|
3762
3770
|
async function loadEmittersPluginSimple(engine) {
|
|
3763
|
-
engine.checkVersion("4.3.
|
|
3771
|
+
engine.checkVersion("4.3.2");
|
|
3764
3772
|
await engine.pluginManager.register(async (e) => {
|
|
3765
3773
|
const instancesManager = await getEmittersInstancesManager(e);
|
|
3766
3774
|
await addEmittersShapesManager(e);
|
|
@@ -3862,7 +3870,7 @@
|
|
|
3862
3870
|
}
|
|
3863
3871
|
|
|
3864
3872
|
async function loadEmojiShape(engine) {
|
|
3865
|
-
engine.checkVersion("4.3.
|
|
3873
|
+
engine.checkVersion("4.3.2");
|
|
3866
3874
|
await engine.pluginManager.register(e => {
|
|
3867
3875
|
e.pluginManager.addShape(validTypes, () => Promise.resolve(new EmojiDrawer()));
|
|
3868
3876
|
});
|
|
@@ -3888,7 +3896,7 @@
|
|
|
3888
3896
|
}
|
|
3889
3897
|
|
|
3890
3898
|
async function loadHeartShape(engine) {
|
|
3891
|
-
engine.checkVersion("4.3.
|
|
3899
|
+
engine.checkVersion("4.3.2");
|
|
3892
3900
|
await engine.pluginManager.register(e => {
|
|
3893
3901
|
e.pluginManager.addShape(["heart"], () => Promise.resolve(new HeartDrawer()));
|
|
3894
3902
|
});
|
|
@@ -4194,7 +4202,7 @@
|
|
|
4194
4202
|
};
|
|
4195
4203
|
}
|
|
4196
4204
|
async function loadImageShape(engine) {
|
|
4197
|
-
engine.checkVersion("4.3.
|
|
4205
|
+
engine.checkVersion("4.3.2");
|
|
4198
4206
|
await engine.pluginManager.register(e => {
|
|
4199
4207
|
addLoadImageToEngine(e);
|
|
4200
4208
|
e.pluginManager.addPlugin(new ImagePreloaderPlugin(e));
|
|
@@ -4339,7 +4347,7 @@
|
|
|
4339
4347
|
}
|
|
4340
4348
|
|
|
4341
4349
|
async function loadLifeUpdater(engine) {
|
|
4342
|
-
engine.checkVersion("4.3.
|
|
4350
|
+
engine.checkVersion("4.3.2");
|
|
4343
4351
|
await engine.pluginManager.register(e => {
|
|
4344
4352
|
e.pluginManager.addParticleUpdater("life", container => {
|
|
4345
4353
|
return Promise.resolve(new LifeUpdater(container));
|
|
@@ -4393,7 +4401,7 @@
|
|
|
4393
4401
|
}
|
|
4394
4402
|
|
|
4395
4403
|
async function loadMotionPlugin(engine) {
|
|
4396
|
-
engine.checkVersion("4.3.
|
|
4404
|
+
engine.checkVersion("4.3.2");
|
|
4397
4405
|
await engine.pluginManager.register(e => {
|
|
4398
4406
|
e.pluginManager.addPlugin(new MotionPlugin());
|
|
4399
4407
|
});
|
|
@@ -4478,19 +4486,19 @@
|
|
|
4478
4486
|
}
|
|
4479
4487
|
|
|
4480
4488
|
async function loadGenericPolygonShape(engine) {
|
|
4481
|
-
engine.checkVersion("4.3.
|
|
4489
|
+
engine.checkVersion("4.3.2");
|
|
4482
4490
|
await engine.pluginManager.register(e => {
|
|
4483
4491
|
e.pluginManager.addShape(["polygon"], () => Promise.resolve(new PolygonDrawer()));
|
|
4484
4492
|
});
|
|
4485
4493
|
}
|
|
4486
4494
|
async function loadTriangleShape(engine) {
|
|
4487
|
-
engine.checkVersion("4.3.
|
|
4495
|
+
engine.checkVersion("4.3.2");
|
|
4488
4496
|
await engine.pluginManager.register(e => {
|
|
4489
4497
|
e.pluginManager.addShape(["triangle"], () => Promise.resolve(new TriangleDrawer()));
|
|
4490
4498
|
});
|
|
4491
4499
|
}
|
|
4492
4500
|
async function loadPolygonShape(engine) {
|
|
4493
|
-
engine.checkVersion("4.3.
|
|
4501
|
+
engine.checkVersion("4.3.2");
|
|
4494
4502
|
await Promise.all([
|
|
4495
4503
|
loadGenericPolygonShape(engine),
|
|
4496
4504
|
loadTriangleShape(engine),
|
|
@@ -4624,7 +4632,7 @@
|
|
|
4624
4632
|
}
|
|
4625
4633
|
|
|
4626
4634
|
async function loadRollUpdater(engine) {
|
|
4627
|
-
engine.checkVersion("4.3.
|
|
4635
|
+
engine.checkVersion("4.3.2");
|
|
4628
4636
|
await engine.pluginManager.register(e => {
|
|
4629
4637
|
e.pluginManager.addParticleUpdater("roll", () => {
|
|
4630
4638
|
return Promise.resolve(new RollUpdater(e.pluginManager));
|
|
@@ -4730,7 +4738,7 @@
|
|
|
4730
4738
|
}
|
|
4731
4739
|
|
|
4732
4740
|
async function loadRotateUpdater(engine) {
|
|
4733
|
-
engine.checkVersion("4.3.
|
|
4741
|
+
engine.checkVersion("4.3.2");
|
|
4734
4742
|
await engine.pluginManager.register(e => {
|
|
4735
4743
|
e.pluginManager.addParticleUpdater("rotate", container => {
|
|
4736
4744
|
return Promise.resolve(new RotateUpdater(container));
|
|
@@ -4754,7 +4762,7 @@
|
|
|
4754
4762
|
}
|
|
4755
4763
|
|
|
4756
4764
|
async function loadSquareShape(engine) {
|
|
4757
|
-
engine.checkVersion("4.3.
|
|
4765
|
+
engine.checkVersion("4.3.2");
|
|
4758
4766
|
await engine.pluginManager.register(e => {
|
|
4759
4767
|
e.pluginManager.addShape(["edge", "square"], () => Promise.resolve(new SquareDrawer()));
|
|
4760
4768
|
});
|
|
@@ -4788,7 +4796,7 @@
|
|
|
4788
4796
|
}
|
|
4789
4797
|
|
|
4790
4798
|
async function loadStarShape(engine) {
|
|
4791
|
-
engine.checkVersion("4.3.
|
|
4799
|
+
engine.checkVersion("4.3.2");
|
|
4792
4800
|
await engine.pluginManager.register(e => {
|
|
4793
4801
|
e.pluginManager.addShape(["star"], () => Promise.resolve(new StarDrawer()));
|
|
4794
4802
|
});
|
|
@@ -4897,7 +4905,7 @@
|
|
|
4897
4905
|
}
|
|
4898
4906
|
|
|
4899
4907
|
async function loadTiltUpdater(engine) {
|
|
4900
|
-
engine.checkVersion("4.3.
|
|
4908
|
+
engine.checkVersion("4.3.2");
|
|
4901
4909
|
await engine.pluginManager.register(e => {
|
|
4902
4910
|
e.pluginManager.addParticleUpdater("tilt", container => {
|
|
4903
4911
|
return Promise.resolve(new TiltUpdater(container));
|
|
@@ -4999,7 +5007,7 @@
|
|
|
4999
5007
|
}
|
|
5000
5008
|
|
|
5001
5009
|
async function loadWobbleUpdater(engine) {
|
|
5002
|
-
engine.checkVersion("4.3.
|
|
5010
|
+
engine.checkVersion("4.3.2");
|
|
5003
5011
|
await engine.pluginManager.register(e => {
|
|
5004
5012
|
e.pluginManager.addParticleUpdater("wobble", container => {
|
|
5005
5013
|
return Promise.resolve(new WobbleUpdater(container));
|
|
@@ -5404,7 +5412,7 @@
|
|
|
5404
5412
|
|
|
5405
5413
|
let initPromise = null;
|
|
5406
5414
|
async function doInitPlugins(engine) {
|
|
5407
|
-
engine.checkVersion("4.3.
|
|
5415
|
+
engine.checkVersion("4.3.2");
|
|
5408
5416
|
await engine.pluginManager.register(async (e) => {
|
|
5409
5417
|
await Promise.all([
|
|
5410
5418
|
loadBasic(e),
|
|
@@ -5477,7 +5485,7 @@
|
|
|
5477
5485
|
confetti.init = async () => {
|
|
5478
5486
|
await initPlugins(tsParticles);
|
|
5479
5487
|
};
|
|
5480
|
-
confetti.version = "4.3.
|
|
5488
|
+
confetti.version = "4.3.2";
|
|
5481
5489
|
globalThis.confetti = confetti;
|
|
5482
5490
|
|
|
5483
5491
|
const globalObject = globalThis;
|